Searched refs:_Block_object_dispose (Results 1 - 4 of 4) sorted by relevance

/external/compiler-rt/test/BlocksRuntime/
H A DobjectRRGC.c32 void _Block_object_dispose(const void *object, const int isWeak) { function
33 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
H A Dobjectassign.c31 void _Block_object_dispose(const void *object, const int isWeak) { function
32 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
/external/compiler-rt/lib/BlocksRuntime/
H A DBlock_private.h116 BLOCK_EXPORT void _Block_object_dispose(const void *object, const int flags);
H A Druntime.c534 In these cases helper functions are synthesized by the compiler for use in Block_copy and Block_release, called the copy and dispose helpers. The copy helper emits a call to the C++ const copy constructor for C++ stack based objects and for the rest calls into the runtime support function _Block_object_assign. The dispose helper has a call to the C++ destructor for case 1 and a call into _Block_object_dispose for the rest.
536 The flags parameter of _Block_object_assign and _Block_object_dispose is set to
593 void _Block_object_dispose(const void *object, const int flags) { function
594 //printf("_Block_object_dispose(%p, %x)\n", object, flags);

Completed in 1227 milliseconds