Home
last modified time | relevance | path

Searched refs:freefunc (Results 1 – 24 of 24) sorted by relevance

/external/libcups/cups/
Darray.c61 cups_afree_func_t freefunc; /* Free function */ member
227 if (a->freefunc) in cupsArrayClear()
233 (a->freefunc)(*e, a->data); in cupsArrayClear()
327 if (a->freefunc) in cupsArrayDelete()
333 (a->freefunc)(*e, a->data); in cupsArrayDelete()
775 a->freefunc = ff; in cupsArrayNew3()
916 if (a->freefunc) in cupsArrayRemove()
917 (a->freefunc)(a->elements[current], a->data); in cupsArrayRemove()
/external/clang/test/CodeGenCXX/
Ddebug-info-codeview-display-name.cpp10 void freefunc() { } in freefunc() function
92 template void fn_tmpl<int, freefunc>();
/external/curl/lib/
Dmime.c1062 if(part->freefunc) in cleanup_part_content()
1063 part->freefunc(part->arg); in cleanup_part_content()
1067 part->freefunc = NULL; in cleanup_part_content()
1081 mime->parent->freefunc = NULL; /* Be sure we won't be called again. */ in mime_subparts_free()
1093 mime->parent->freefunc = NULL; /* Be sure we won't be called again. */ in mime_subparts_unbind()
1151 src->seekfunc, src->freefunc, src->arg); in Curl_mime_duppart()
1328 part->freefunc = mime_mem_free; in curl_mime_data()
1363 part->freefunc = mime_file_free; in curl_mime_filedata()
1447 curl_free_callback freefunc, void *arg) in curl_mime_data_cb() argument
1457 part->freefunc = freefunc; in curl_mime_data_cb()
[all …]
Dmime.h113 curl_free_callback freefunc; /* Argument free function. */ member
/external/python/cpython3/Lib/test/
Dtest_code.py268 freefunc = ctypes.CFUNCTYPE(None,ctypes.c_voidp) variable
271 RequestCodeExtraIndex.argtypes = (freefunc,)
288 FREE_FUNC = freefunc(myfree)
/external/python/cpython2/Doc/includes/
Dtypestruct.h68 freefunc tp_free; /* Low-level free-memory routine */
/external/python/cpython3/Doc/includes/
Dtypestruct.h66 freefunc tp_free; /* Low-level free-memory routine */
/external/python/cpython3/Include/
Dmoduleobject.h83 freefunc m_free;
Dceval.h210 PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc);
Dpystate.h157 freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS];
Dobject.h319 typedef void (*freefunc)(void *); typedef
413 freefunc tp_free; /* Low-level free-memory routine */
/external/libxml2/os400/
Drpgsupport.h20 XMLPUBFUN void __set_xmlFree(xmlFreeFunc freefunc);
/external/python/cpython2/Include/
Dobject.h305 typedef void (*freefunc)(void *); typedef
391 freefunc tp_free; /* Low-level free-memory routine */
/external/python/cpython3/Modules/
Datexitmodule.c347 (freefunc)atexit_free
D_asynciomodule.c3326 (freefunc)module_free /* m_free */
D_pickle.c7445 (freefunc)pickle_free /* m_free */
/external/python/cpython3/Objects/
Dcodeobject.c435 freefunc free_extra = interp->co_extra_freefuncs[i]; in code_dealloc()
895 freefunc free = interp->co_extra_freefuncs[index]; in _PyCode_SetExtra()
/external/python/cpython3/Modules/_io/
D_iomodule.c634 (freefunc)iomodule_free,
/external/curl/include/curl/
Dcurl.h2177 curl_free_callback freefunc,
/external/python/cpython3/Doc/c-api/
Dmodule.rst210 .. c:member:: freefunc m_free
Dtypeobj.rst25 freefunc, printfunc, getattrfunc, getattrofunc, setattrfunc, setattrofunc,
937 :c:type:`freefunc`::
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst25 freefunc, printfunc, getattrfunc, getattrofunc, setattrfunc, setattrofunc,
1033 In Python 2.3 and beyond, its signature is :c:type:`freefunc`::
/external/curl/packages/OS400/
Dcurl.inc.in2207 d freefunc value like(curl_free_callback)
/external/python/cpython3/Python/
Dceval.c5104 _PyEval_RequestCodeExtraIndex(freefunc free) in _PyEval_RequestCodeExtraIndex()