/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 | 1844 int newto = to->trans[transnr].to; in xmlFAReduceEpsilonTransitions() local 1847 ctxt->states[newto], in xmlFAReduceEpsilonTransitions() 1866 int newto = to->trans[transnr].to; in xmlFAReduceEpsilonTransitions() local 1870 ctxt->states[newto], in xmlFAReduceEpsilonTransitions() 1874 ctxt->states[newto], counter, -1); in xmlFAReduceEpsilonTransitions() 1898 int statenr, i, j, newto; in xmlFAEliminateSimpleEpsilonTransitions() local 1915 newto = state->trans[0].to; in xmlFAEliminateSimpleEpsilonTransitions() 1920 statenr, newto); in xmlFAEliminateSimpleEpsilonTransitions() 1925 statenr, newto); in xmlFAEliminateSimpleEpsilonTransitions() 1933 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 | 712 teeobject *newto; in tee_copy() local 714 newto = PyObject_GC_New(teeobject, &tee_type); in tee_copy() 715 if (newto == NULL) in tee_copy() 718 newto->dataobj = to->dataobj; in tee_copy() 719 newto->index = to->index; in tee_copy() 720 newto->weakreflist = NULL; in tee_copy() 721 PyObject_GC_Track(newto); in tee_copy() 722 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 | 4071 compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, const char* attr) in compatible_for_assignment() argument 4075 if (newto->tp_free != oldto->tp_free) { in compatible_for_assignment() 4080 newto->tp_name, in compatible_for_assignment() 4094 newbase = newto; in compatible_for_assignment() 4107 newto->tp_name, in compatible_for_assignment() 4119 PyTypeObject *newto; in object_set_class() local 4137 newto = (PyTypeObject *)value; in object_set_class() 4187 if (!(PyType_IsSubtype(newto, &PyModule_Type) && in object_set_class() 4189 (!(newto->tp_flags & Py_TPFLAGS_HEAPTYPE) || in object_set_class() 4197 if (compatible_for_assignment(oldto, newto, "__class__")) { in object_set_class() [all …]
|