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
86 IPCThreadState();
87 ~IPCThreadState();
  /frameworks/native/libs/binder/
IPCThreadState.cpp 17 #define LOG_TAG "IPCThreadState"
19 #include <binder/IPCThreadState.h>
298 IPCThreadState* IPCThreadState::self()
303 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k);
305 return new IPCThreadState;
322 IPCThreadState* IPCThreadState::selfOrNull()
326 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k)
    [all...]

Completed in 1352 milliseconds