/third_party/openssl/include/openssl/ |
D | safestack.h | 84 …ic ossl_unused ossl_inline void sk_##t1##_pop_free(STACK_OF(t1) *sk, sk_##t1##_freefunc freefunc) \ 86 OPENSSL_sk_pop_free((OPENSSL_STACK *)sk, (OPENSSL_sk_freefunc)freefunc); \ 118 sk_##t1##_freefunc freefunc) \ 122 (OPENSSL_sk_freefunc)freefunc); \
|
/third_party/curl/lib/ |
D | mime.c | 1157 if(part->freefunc) in cleanup_part_content() 1158 part->freefunc(part->arg); in cleanup_part_content() 1162 part->freefunc = NULL; in cleanup_part_content() 1179 mime->parent->freefunc = NULL; /* Be sure we won't be called again. */ in mime_subparts_free() 1191 mime->parent->freefunc = NULL; /* Be sure we won't be called again. */ in mime_subparts_unbind() 1251 src->seekfunc, src->freefunc, src->arg); in Curl_mime_duppart() 1427 part->freefunc = mime_mem_free; in curl_mime_data() 1463 part->freefunc = mime_file_free; in curl_mime_filedata() 1547 curl_free_callback freefunc, void *arg) in curl_mime_data_cb() argument 1557 part->freefunc = freefunc; in curl_mime_data_cb() [all …]
|
D | mime.h | 117 curl_free_callback freefunc; /* Argument free function. */ member
|
/third_party/python/Lib/test/ |
D | test_code.py | 353 freefunc = ctypes.CFUNCTYPE(None,ctypes.c_voidp) variable 356 RequestCodeExtraIndex.argtypes = (freefunc,) 373 FREE_FUNC = freefunc(myfree)
|
/third_party/python/Include/cpython/ |
D | ceval.h | 27 PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc);
|
D | object.h | 259 freefunc tp_free; /* Low-level free-memory routine */
|
/third_party/python/Doc/includes/ |
D | typestruct.h | 69 freefunc tp_free; /* Low-level free-memory routine */
|
/third_party/openssl/doc/man3/ |
D | DEFINE_STACK_OF.pod | 44 void sk_TYPE_pop_free(STACK_OF(TYPE) *sk, sk_TYPE_freefunc freefunc); 54 sk_TYPE_freefunc freefunc); 127 free function freefunc() is called on each element to free it. 182 Copying is performed by the supplied copyfunc() and freeing by freefunc(). The 183 function freefunc() is only called if an error occurs.
|
/third_party/python/Include/ |
D | moduleobject.h | 84 freefunc m_free;
|
D | object.h | 200 typedef void (*freefunc)(void *); typedef
|
/third_party/python/Include/internal/ |
D | pycore_interp.h | 270 freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS];
|
/third_party/libxml2/os400/ |
D | rpgsupport.h | 20 XMLPUBFUN void __set_xmlFree(xmlFreeFunc freefunc);
|
/third_party/python/Modules/ |
D | xxlimited.c | 127 freefunc free = PyType_GetSlot(tp, Py_tp_free); in Xxo_dealloc()
|
D | _localemodule.c | 909 (freefunc)locale_free,
|
D | selectmodule.c | 1332 freefunc epoll_free = PyType_GetSlot(type, Py_tp_free); in pyepoll_dealloc() 2000 freefunc kqueue_free = PyType_GetSlot(type, Py_tp_free); in kqueue_queue_dealloc()
|
D | _zoneinfo.c | 2713 .m_free = (freefunc)module_free};
|
D | _struct.c | 1508 freefunc free_func = PyType_GetSlot(Py_TYPE(s), Py_tp_free); in s_dealloc()
|
D | _asynciomodule.c | 3417 (freefunc)module_free /* m_free */
|
D | posixmodule.c | 13436 freefunc free_func = PyType_GetSlot(tp, Py_tp_free); in DirEntry_dealloc() 14204 freefunc free_func = PyType_GetSlot(tp, Py_tp_free); in ScandirIterator_dealloc()
|
/third_party/gstreamer/gstreamer/libs/gst/check/ |
D | gstharness.c | 2835 GDestroyNotify freefunc; member 2888 gst_harness_thread_init (GstHarnessThread * t, GDestroyNotify freefunc, in gst_harness_thread_init() argument 2891 t->freefunc = freefunc; in gst_harness_thread_init() 2982 if (t != NULL && t->freefunc != NULL) in gst_harness_stress_free() 2983 t->freefunc (t); in gst_harness_stress_free()
|
/third_party/python/Modules/_io/ |
D | _iomodule.c | 687 (freefunc)iomodule_free,
|
/third_party/python/Objects/ |
D | codeobject.c | 647 freefunc free_extra = interp->co_extra_freefuncs[i]; in code_dealloc() 1348 freefunc free = interp->co_extra_freefuncs[index]; in _PyCode_SetExtra()
|
/third_party/curl/include/curl/ |
D | curl.h | 2365 curl_free_callback freefunc,
|
/third_party/python/Doc/c-api/ |
D | module.rst | 233 .. c:member:: freefunc m_free
|
D | typeobj.rst | 128 …| :c:member:`~PyTypeObject.tp_free` | :c:type:`freefunc` | … 340 | :c:type:`freefunc` | void * | void | 1853 .. c:member:: freefunc PyTypeObject.tp_free 2490 .. c:type:: void (*freefunc)(void *)
|