HomeSort by relevance Sort by last modified time
    Searched full:xpc_object_t (Results 1 - 13 of 13) sorted by null

  /external/libchrome/sandbox/mac/
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 count);
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)
    [all...]
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...]
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);
message_server.h 20 xpc_object_t xpc;
  /external/clang/test/ARCMT/
dispatch.m.result 13 void func2(xpc_object_t o) {
autoreleases.m 15 xpc_object_t _xpc_prop;
19 @property (retain) xpc_object_t xpc_prop;
45 -(void) setXpc_prop:(xpc_object_t) newVal {
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 {
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);
dispatch.m 15 void func2(xpc_object_t o) {
objcmt-arc-cf-annotations.m     [all...]
objcmt-arc-cf-annotations.m.result     [all...]
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 316 /// #define xpc_retain(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o retain]; })
317 /// #define xpc_release(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o release]; })
  /external/clang/test/Analysis/
retain-release.m     [all...]

Completed in 680 milliseconds