HomeSort by relevance Sort by last modified time
    Searched defs:IPCThreadState (Results 1 - 2 of 2) sorted by null

  /frameworks/native/include/binder/
IPCThreadState.h 32 class IPCThreadState
35 static IPCThreadState* self();
36 static IPCThreadState* selfOrNull(); // self(), but won't instantiate
88 IPCThreadState();
89 ~IPCThreadState();
  /frameworks/native/libs/binder/
IPCThreadState.cpp 17 #define LOG_TAG "IPCThreadState"
19 #include <binder/IPCThreadState.h>
299 IPCThreadState* IPCThreadState::self()
304 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k);
306 return new IPCThreadState;
323 IPCThreadState* IPCThreadState::selfOrNull()
327 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k)
    [all...]

Completed in 213 milliseconds