OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:destroy_func
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/bionic/
tdestroy.cpp
23
void tdestroy(void* root, void (*
destroy_func
)(void*)) {
29
tdestroy(root_node->llink,
destroy_func
);
32
tdestroy(root_node->rlink,
destroy_func
);
34
(*
destroy_func
)(root_node->key);
/external/chromium_org/third_party/harfbuzz-ng/src/
hb-object-private.hh
147
hb_destroy_func_t
destroy_func
,
152
return user_data.set (key, data,
destroy_func
, replace);
/external/harfbuzz_ng/src/
hb-object-private.hh
147
hb_destroy_func_t
destroy_func
,
152
return user_data.set (key, data,
destroy_func
, replace);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
section.h
270
* \param
destroy_func
function that can destroy the relocation
271
* \note Does not make a copy of reloc. The same
destroy_func
must be
278
void (*
destroy_func
) (/*@only@*/ void *reloc));
section.c
563
void (*
destroy_func
) (/*@only@*/ void *reloc))
566
if (!
destroy_func
)
568
else if (sect->destroy_reloc &&
destroy_func
!= sect->destroy_reloc)
570
sect->destroy_reloc =
destroy_func
;
[
all
...]
/external/pixman/pixman/
pixman-image.c
129
common->
destroy_func
= NULL;
143
if (image->common.
destroy_func
)
144
image->common.
destroy_func
(image, image->common.destroy_data);
225
image->common.
destroy_func
= func;
pixman-private.h
116
pixman_image_destroy_func_t
destroy_func
;
member in struct:image_common
[
all
...]
Completed in 154 milliseconds