/external/libfuse/lib/modules/ |
D | iconv.c | 257 char *newto; in iconv_symlink() local 260 err = iconv_convpath(ic, to, &newto, 0); in iconv_symlink() 262 err = fuse_fs_symlink(ic->next, newfrom, newto); in iconv_symlink() 263 free(newto); in iconv_symlink() 274 char *newto; in iconv_rename() local 277 err = iconv_convpath(ic, to, &newto, 0); in iconv_rename() 279 err = fuse_fs_rename(ic->next, newfrom, newto, flags); in iconv_rename() 280 free(newto); in iconv_rename() 291 char *newto; in iconv_link() local 294 err = iconv_convpath(ic, to, &newto, 0); in iconv_link() [all …]
|
D | subdir.c | 260 char *newto; in subdir_rename() local 263 err = subdir_addpath(d, to, &newto); in subdir_rename() 265 err = fuse_fs_rename(d->next, newfrom, newto, flags); in subdir_rename() 266 free(newto); in subdir_rename() 277 char *newto; in subdir_link() local 280 err = subdir_addpath(d, to, &newto); in subdir_link() 282 err = fuse_fs_link(d->next, newfrom, newto); in subdir_link() 283 free(newto); in subdir_link()
|
/external/libxml2/ |
D | xmlregexp.c | 1833 int newto = to->trans[transnr].to; in xmlFAReduceEpsilonTransitions() local 1836 ctxt->states[newto], in xmlFAReduceEpsilonTransitions() 1855 int newto = to->trans[transnr].to; in xmlFAReduceEpsilonTransitions() local 1859 ctxt->states[newto], in xmlFAReduceEpsilonTransitions() 1863 ctxt->states[newto], counter, -1); in xmlFAReduceEpsilonTransitions() 1893 int statenr, i, j, newto; in xmlFAEliminateSimpleEpsilonTransitions() local 1911 newto = state->trans[0].to; in xmlFAEliminateSimpleEpsilonTransitions() 1916 statenr, newto); in xmlFAEliminateSimpleEpsilonTransitions() 1921 statenr, newto); in xmlFAEliminateSimpleEpsilonTransitions() 1929 j, tmp->no, newto); in xmlFAEliminateSimpleEpsilonTransitions() [all …]
|
/external/python/cpython2/Modules/ |
D | itertoolsmodule.c | 501 teeobject *newto; in tee_copy() local 503 newto = PyObject_GC_New(teeobject, &tee_type); in tee_copy() 504 if (newto == NULL) in tee_copy() 507 newto->dataobj = to->dataobj; in tee_copy() 508 newto->index = to->index; in tee_copy() 509 newto->weakreflist = NULL; in tee_copy() 510 PyObject_GC_Track(newto); in tee_copy() 511 return (PyObject *)newto; in tee_copy()
|
/external/python/cpython3/Modules/ |
D | itertoolsmodule.c | 847 teeobject *newto; in tee_copy() local 849 newto = PyObject_GC_New(teeobject, &tee_type); in tee_copy() 850 if (newto == NULL) in tee_copy() 853 newto->dataobj = to->dataobj; in tee_copy() 854 newto->index = to->index; in tee_copy() 855 newto->weakreflist = NULL; in tee_copy() 856 PyObject_GC_Track(newto); in tee_copy() 857 return (PyObject *)newto; in tee_copy()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 3172 compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, char* attr) in compatible_for_assignment() argument 3176 if (newto->tp_dealloc != oldto->tp_dealloc || in compatible_for_assignment() 3177 newto->tp_free != oldto->tp_free) in compatible_for_assignment() 3183 newto->tp_name, in compatible_for_assignment() 3187 newbase = newto; in compatible_for_assignment() 3200 newto->tp_name, in compatible_for_assignment() 3212 PyTypeObject *newto; in object_set_class() local 3225 newto = (PyTypeObject *)value; in object_set_class() 3226 if (!(newto->tp_flags & Py_TPFLAGS_HEAPTYPE) || in object_set_class() 3233 if (compatible_for_assignment(newto, oldto, "__class__")) { in object_set_class() [all …]
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 4651 compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, const char* attr) in compatible_for_assignment() argument 4655 if (newto->tp_free != oldto->tp_free) { in compatible_for_assignment() 4660 newto->tp_name, in compatible_for_assignment() 4674 newbase = newto; in compatible_for_assignment() 4687 newto->tp_name, in compatible_for_assignment() 4699 PyTypeObject *newto; in object_set_class() local 4717 newto = (PyTypeObject *)value; in object_set_class() 4767 if (!(PyType_IsSubtype(newto, &PyModule_Type) && in object_set_class() 4769 (_PyType_HasFeature(newto, Py_TPFLAGS_IMMUTABLETYPE) || in object_set_class() 4777 if (compatible_for_assignment(oldto, newto, "__class__")) { in object_set_class() [all …]
|