Searched refs:newto (Results 1 - 4 of 4) sorted by relevance
/third_party/libfuse/lib/modules/ |
H A D | iconv.c | 258 char *newto; in iconv_symlink() local 261 err = iconv_convpath(ic, to, &newto, 0); in iconv_symlink() 263 err = fuse_fs_symlink(ic->next, newfrom, newto); in iconv_symlink() 264 free(newto); in iconv_symlink() 275 char *newto; in iconv_rename() local 278 err = iconv_convpath(ic, to, &newto, 0); in iconv_rename() 280 err = fuse_fs_rename(ic->next, newfrom, newto, flags); in iconv_rename() 281 free(newto); in iconv_rename() 292 char *newto; in iconv_link() local 295 err = iconv_convpath(ic, to, &newto, in iconv_link() [all...] |
H A 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()
|
/third_party/python/Modules/ |
H A D | itertoolsmodule.c | 845 teeobject *newto; in tee_copy() local 847 newto = PyObject_GC_New(teeobject, &tee_type); in tee_copy() 848 if (newto == NULL) in tee_copy() 851 newto->dataobj = to->dataobj; in tee_copy() 852 newto->index = to->index; in tee_copy() 853 newto->weakreflist = NULL; in tee_copy() 854 PyObject_GC_Track(newto); in tee_copy() 855 return (PyObject *)newto; in tee_copy()
|
/third_party/python/Objects/ |
H A D | typeobject.c | 4725 compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, const char* attr) in compatible_for_assignment() argument 4729 if (newto->tp_free != oldto->tp_free) { in compatible_for_assignment() 4734 newto->tp_name, in compatible_for_assignment() 4748 newbase = newto; in compatible_for_assignment() 4761 ((newto->tp_flags & Py_TPFLAGS_MANAGED_DICT))) in compatible_for_assignment() 4770 newto->tp_name, in compatible_for_assignment() 4791 PyTypeObject *newto = (PyTypeObject *)value; in object_set_class() local 4847 if (!(PyType_IsSubtype(newto, &PyModule_Type) && in object_set_class() 4849 (_PyType_HasFeature(newto, Py_TPFLAGS_IMMUTABLETYPE) || in object_set_class() 4857 if (compatible_for_assignment(oldto, newto, "__class_ in object_set_class() [all...] |
Completed in 16 milliseconds