Searched refs:xpc_object_t (Results 1 – 12 of 12) sorted by relevance
/external/libchrome/sandbox/mac/ |
D | xpc_stubs_header.fragment | 19 typedef void* xpc_object_t; 39 xpc_dictionary_set_int64(xpc_object_t xdict, const char* key, int64_t value); 41 XPC_EXPORT XPC_NONNULL1 void xpc_release(xpc_object_t object); 44 bool xpc_dictionary_get_bool(xpc_object_t xdict, const char* key); 47 xpc_dictionary_get_int64(xpc_object_t xdict, const char* key); 50 const char* xpc_dictionary_get_string(xpc_object_t xdict, const char* key); 53 xpc_dictionary_get_uint64(xpc_object_t xdict, const char* key); 56 xpc_dictionary_set_uint64(xpc_object_t xdict, const char* key, uint64_t value); 59 void xpc_dictionary_set_string(xpc_object_t xdict, const char* key, 62 XPC_EXPORT XPC_MALLOC XPC_RETURNS_RETAINED XPC_WARN_RESULT xpc_object_t [all …]
|
D | xpc_stubs.sig | 10 void xpc_release(xpc_object_t object); 13 xpc_object_t xpc_dictionary_create(const char* const *keys, const xpc_object_t* values, size_t coun… 14 const char* xpc_dictionary_get_string(xpc_object_t dictionary, const char* key); 15 uint64_t xpc_dictionary_get_uint64(xpc_object_t dictionary, const char* key); 16 void xpc_dictionary_set_uint64(xpc_object_t dictionary, const char* key, uint64_t value); 17 int64_t xpc_dictionary_get_int64(xpc_object_t dictionary, const char* key); 18 void xpc_dictionary_set_int64(xpc_object_t dictionary, const char* key, int64_t value); 19 bool xpc_dictionary_get_bool(xpc_object_t dictionary, const char* key); 20 xpc_object_t xpc_dictionary_create_reply(xpc_object_t request);
|
D | xpc_private_stubs.sig | 10 void xpc_dictionary_set_mach_send(xpc_object_t dictionary, const char* name, mach_port_t port); 11 void xpc_dictionary_get_audit_token(xpc_object_t dictionary, audit_token_t* token); 14 mach_port_t xpc_mach_send_get_right(xpc_object_t value); 18 int xpc_pipe_receive(mach_port_t port, xpc_object_t* message); 19 int xpc_pipe_routine(xpc_pipe_t pipe, xpc_object_t request, xpc_object_t* reply); 20 int xpc_pipe_routine_reply(xpc_object_t reply); 21 int xpc_pipe_simpleroutine(xpc_pipe_t pipe, xpc_object_t message); 22 int xpc_pipe_routine_forward(xpc_pipe_t forward_to, xpc_object_t request);
|
D | message_server.h | 20 xpc_object_t xpc;
|
/external/clang/test/ARCMT/ |
D | Common.h | 76 #define xpc_retain(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o retain]; }) 77 #define xpc_release(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o release]; … 80 typedef id xpc_object_t; typedef 83 void _xpc_object_validate(xpc_object_t object);
|
D | autoreleases.m.result | 15 xpc_object_t _xpc_prop; 19 @property (strong) xpc_object_t xpc_prop; 43 -(void) setXpc_prop:(xpc_object_t) newVal {
|
D | autoreleases.m | 15 xpc_object_t _xpc_prop; 19 @property (retain) xpc_object_t xpc_prop; 45 -(void) setXpc_prop:(xpc_object_t) newVal { argument
|
D | dispatch.m.result | 13 void func2(xpc_object_t o) {
|
D | dispatch.m | 15 void func2(xpc_object_t o) {
|
D | objcmt-arc-cf-annotations.m | 1734 typedef void * xpc_object_t; typedef 1735 xpc_object_t _CFXPCCreateXPCObjectFromCFObject(CFTypeRef cf); 1736 void xpc_release(xpc_object_t object); 1740 xpc_object_t xpc; 2042 typedef xpc_object_t xpc_connection_t;
|
D | objcmt-arc-cf-annotations.m.result | 1782 typedef void * xpc_object_t; 1783 xpc_object_t _CFXPCCreateXPCObjectFromCFObject(CFTypeRef cf); 1784 void xpc_release(xpc_object_t object); 1788 xpc_object_t xpc; 2090 typedef xpc_object_t xpc_connection_t;
|
/external/clang/test/Analysis/ |
D | retain-release.m | 1729 typedef void * xpc_object_t; typedef 1730 xpc_object_t _CFXPCCreateXPCObjectFromCFObject(CFTypeRef cf); 1731 void xpc_release(xpc_object_t object); 1735 xpc_object_t xpc; 2118 typedef xpc_object_t xpc_connection_t;
|