Lines Matching refs:IPCThreadState
280 IPCThreadState* IPCThreadState::self() in self()
285 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in self()
287 return new IPCThreadState; in self()
310 IPCThreadState* IPCThreadState::selfOrNull() in selfOrNull()
314 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in selfOrNull()
320 void IPCThreadState::shutdown() in shutdown()
326 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(gTLS); in shutdown()
336 void IPCThreadState::disableBackgroundScheduling(bool disable) in disableBackgroundScheduling()
341 bool IPCThreadState::backgroundSchedulingDisabled() in backgroundSchedulingDisabled()
346 sp<ProcessState> IPCThreadState::process() in process()
351 status_t IPCThreadState::clearLastError() in clearLastError()
358 pid_t IPCThreadState::getCallingPid() const in getCallingPid()
363 uid_t IPCThreadState::getCallingUid() const in getCallingUid()
368 int64_t IPCThreadState::clearCallingIdentity() in clearCallingIdentity()
375 void IPCThreadState::setStrictModePolicy(int32_t policy) in setStrictModePolicy()
380 int32_t IPCThreadState::getStrictModePolicy() const in getStrictModePolicy()
385 void IPCThreadState::setLastTransactionBinderFlags(int32_t flags) in setLastTransactionBinderFlags()
390 int32_t IPCThreadState::getLastTransactionBinderFlags() const in getLastTransactionBinderFlags()
395 void IPCThreadState::restoreCallingIdentity(int64_t token) in restoreCallingIdentity()
401 void IPCThreadState::clearCaller() in clearCaller()
407 void IPCThreadState::flushCommands() in flushCommands()
423 void IPCThreadState::blockUntilThreadAvailable() in blockUntilThreadAvailable()
435 status_t IPCThreadState::getAndExecuteCommand() in getAndExecuteCommand()
479 void IPCThreadState::processPendingDerefs() in processPendingDerefs()
513 void IPCThreadState::processPostWriteDerefs() in processPostWriteDerefs()
528 void IPCThreadState::joinThreadPool(bool isMain) in joinThreadPool()
560 int IPCThreadState::setupPolling(int* fd) in setupPolling()
571 status_t IPCThreadState::handlePolledCommands() in handlePolledCommands()
584 void IPCThreadState::stopProcess(bool /*immediate*/) in stopProcess()
594 status_t IPCThreadState::transact(int32_t handle, in transact()
654 void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) in incStrongHandle()
664 void IPCThreadState::decStrongHandle(int32_t handle) in decStrongHandle()
671 void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) in incWeakHandle()
681 void IPCThreadState::decWeakHandle(int32_t handle) in decWeakHandle()
688 status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) in attemptIncStrongHandle()
712 void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) in expungeHandle()
720 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) in requestDeathNotification()
728 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) in clearDeathNotification()
736 IPCThreadState::IPCThreadState() in IPCThreadState() function in android::IPCThreadState
747 IPCThreadState::~IPCThreadState() in ~IPCThreadState()
751 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) in sendReply()
761 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) in waitForResponse()
852 status_t IPCThreadState::talkWithDriver(bool doReceive) in talkWithDriver()
955 status_t IPCThreadState::writeTransactionData(int32_t cmd, uint32_t binderFlags, in writeTransactionData()
998 status_t IPCThreadState::executeCommand(int32_t cmd) in executeCommand()
1195 void IPCThreadState::threadDestructor(void *st) in threadDestructor()
1197 IPCThreadState* const self = static_cast<IPCThreadState*>(st); in threadDestructor()
1210 void IPCThreadState::freeBuffer(Parcel* parcel, const uint8_t* data, in freeBuffer()
1221 IPCThreadState* state = self(); in freeBuffer()