Lines Matching refs:IPCThreadState
287 IPCThreadState* IPCThreadState::self() in self()
292 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in self()
294 return new IPCThreadState; in self()
318 IPCThreadState* IPCThreadState::selfOrNull() in selfOrNull()
322 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in selfOrNull()
328 void IPCThreadState::shutdown() in shutdown()
334 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(gTLS); in shutdown()
344 void IPCThreadState::disableBackgroundScheduling(bool disable) in disableBackgroundScheduling()
349 bool IPCThreadState::backgroundSchedulingDisabled() in backgroundSchedulingDisabled()
354 sp<ProcessState> IPCThreadState::process() in process()
359 status_t IPCThreadState::clearLastError() in clearLastError()
366 pid_t IPCThreadState::getCallingPid() const in getCallingPid()
371 const char* IPCThreadState::getCallingSid() const in getCallingSid()
376 uid_t IPCThreadState::getCallingUid() const in getCallingUid()
381 int64_t IPCThreadState::clearCallingIdentity() in clearCallingIdentity()
389 void IPCThreadState::setStrictModePolicy(int32_t policy) in setStrictModePolicy()
394 int32_t IPCThreadState::getStrictModePolicy() const in getStrictModePolicy()
399 int64_t IPCThreadState::setCallingWorkSourceUid(uid_t uid) in setCallingWorkSourceUid()
406 int64_t IPCThreadState::setCallingWorkSourceUidWithoutPropagation(uid_t uid) in setCallingWorkSourceUidWithoutPropagation()
414 void IPCThreadState::clearPropagateWorkSource() in clearPropagateWorkSource()
419 bool IPCThreadState::shouldPropagateWorkSource() const in shouldPropagateWorkSource()
424 uid_t IPCThreadState::getCallingWorkSourceUid() const in getCallingWorkSourceUid()
429 int64_t IPCThreadState::clearCallingWorkSource() in clearCallingWorkSource()
434 void IPCThreadState::restoreCallingWorkSource(int64_t token) in restoreCallingWorkSource()
441 void IPCThreadState::setLastTransactionBinderFlags(int32_t flags) in setLastTransactionBinderFlags()
446 int32_t IPCThreadState::getLastTransactionBinderFlags() const in getLastTransactionBinderFlags()
451 void IPCThreadState::restoreCallingIdentity(int64_t token) in restoreCallingIdentity()
458 void IPCThreadState::clearCaller() in clearCaller()
465 void IPCThreadState::flushCommands() in flushCommands()
481 void IPCThreadState::blockUntilThreadAvailable() in blockUntilThreadAvailable()
493 status_t IPCThreadState::getAndExecuteCommand() in getAndExecuteCommand()
537 void IPCThreadState::processPendingDerefs() in processPendingDerefs()
571 void IPCThreadState::processPostWriteDerefs() in processPostWriteDerefs()
586 void IPCThreadState::joinThreadPool(bool isMain) in joinThreadPool()
617 status_t IPCThreadState::setupPolling(int* fd) in setupPolling()
628 status_t IPCThreadState::handlePolledCommands() in handlePolledCommands()
641 void IPCThreadState::stopProcess(bool /*immediate*/) in stopProcess()
651 status_t IPCThreadState::transact(int32_t handle, in transact()
721 void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) in incStrongHandle()
731 void IPCThreadState::decStrongHandle(int32_t handle) in decStrongHandle()
738 void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) in incWeakHandle()
748 void IPCThreadState::decWeakHandle(int32_t handle) in decWeakHandle()
755 status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) in attemptIncStrongHandle()
779 void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) in expungeHandle()
787 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) in requestDeathNotification()
795 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) in clearDeathNotification()
803 IPCThreadState::IPCThreadState() in IPCThreadState() function in android::IPCThreadState
818 IPCThreadState::~IPCThreadState() in ~IPCThreadState()
822 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) in sendReply()
832 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) in waitForResponse()
923 status_t IPCThreadState::talkWithDriver(bool doReceive) in talkWithDriver()
1030 status_t IPCThreadState::writeTransactionData(int32_t cmd, uint32_t binderFlags, in writeTransactionData()
1068 void IPCThreadState::setTheContextObject(sp<BBinder> obj) in setTheContextObject()
1073 status_t IPCThreadState::executeCommand(int32_t cmd) in executeCommand()
1301 const void* IPCThreadState::getServingStackPointer() const { in getServingStackPointer()
1305 void IPCThreadState::threadDestructor(void *st) in threadDestructor()
1307 IPCThreadState* const self = static_cast<IPCThreadState*>(st); in threadDestructor()
1320 void IPCThreadState::freeBuffer(Parcel* parcel, const uint8_t* data, in freeBuffer()
1331 IPCThreadState* state = self(); in freeBuffer()