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

  /frameworks/native/libs/binder/include/binder/
IPCThreadState.h 32 class IPCThreadState
35 static IPCThreadState* self();
36 static IPCThreadState* selfOrNull(); // self(), but won't instantiate
93 IPCThreadState();
94 ~IPCThreadState();
  /system/libhwbinder/include/hwbinder/
IPCThreadState.h 33 class IPCThreadState
36 static IPCThreadState* self();
37 static IPCThreadState* selfOrNull(); // self(), but won't instantiate
99 IPCThreadState();
100 ~IPCThreadState();
  /frameworks/native/libs/binder/
IPCThreadState.cpp 17 #define LOG_TAG "IPCThreadState"
19 #include <binder/IPCThreadState.h>
280 IPCThreadState* IPCThreadState::self()
285 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k);
287 return new IPCThreadState;
291 ALOGW("Calling IPCThreadState::self() during shutdown is dangerous, expect a crash.\n");
300 ALOGW("IPCThreadState::self() unable to create TLS key, expect a crash: %s\n",
310 IPCThreadState* IPCThreadState::selfOrNull(
    [all...]
  /system/libhwbinder/
IPCThreadState.cpp 17 #define LOG_TAG "hw-IPCThreadState"
19 #include <hwbinder/IPCThreadState.h>
279 IPCThreadState* IPCThreadState::self()
284 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k);
286 return new IPCThreadState;
290 ALOGW("Calling IPCThreadState::self() during shutdown is dangerous, expect a crash.\n");
299 ALOGW("IPCThreadState::self() unable to create TLS key, expect a crash: %s\n",
309 IPCThreadState* IPCThreadState::selfOrNull(
    [all...]

Completed in 533 milliseconds