• Home
  • Raw
  • Download

Lines Matching refs:IPCThreadState

294 IPCThreadState* IPCThreadState::self()  in self()
299 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in self()
301 return new IPCThreadState; in self()
325 IPCThreadState* IPCThreadState::selfOrNull() in selfOrNull()
329 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); in selfOrNull()
335 void IPCThreadState::shutdown() in shutdown()
341 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(gTLS); in shutdown()
351 void IPCThreadState::disableBackgroundScheduling(bool disable) in disableBackgroundScheduling()
356 bool IPCThreadState::backgroundSchedulingDisabled() in backgroundSchedulingDisabled()
361 status_t IPCThreadState::clearLastError() in clearLastError()
368 pid_t IPCThreadState::getCallingPid() const in getCallingPid()
374 const char* IPCThreadState::getCallingSid() const in getCallingSid()
380 uid_t IPCThreadState::getCallingUid() const in getCallingUid()
386 const IPCThreadState::SpGuard* IPCThreadState::pushGetCallingSpGuard(const SpGuard* guard) { in pushGetCallingSpGuard()
392 void IPCThreadState::restoreGetCallingSpGuard(const SpGuard* guard) { in restoreGetCallingSpGuard()
396 void IPCThreadState::checkContextIsBinderForUse(const char* use) const { in checkContextIsBinderForUse()
485 int64_t IPCThreadState::clearCallingIdentity() in clearCallingIdentity()
494 bool IPCThreadState::hasExplicitIdentity() { in hasExplicitIdentity()
498 void IPCThreadState::setStrictModePolicy(int32_t policy) in setStrictModePolicy()
503 int32_t IPCThreadState::getStrictModePolicy() const in getStrictModePolicy()
508 int64_t IPCThreadState::setCallingWorkSourceUid(uid_t uid) in setCallingWorkSourceUid()
515 int64_t IPCThreadState::setCallingWorkSourceUidWithoutPropagation(uid_t uid) in setCallingWorkSourceUidWithoutPropagation()
523 void IPCThreadState::clearPropagateWorkSource() in clearPropagateWorkSource()
528 bool IPCThreadState::shouldPropagateWorkSource() const in shouldPropagateWorkSource()
533 uid_t IPCThreadState::getCallingWorkSourceUid() const in getCallingWorkSourceUid()
538 int64_t IPCThreadState::clearCallingWorkSource() in clearCallingWorkSource()
543 void IPCThreadState::restoreCallingWorkSource(int64_t token) in restoreCallingWorkSource()
550 void IPCThreadState::setLastTransactionBinderFlags(int32_t flags) in setLastTransactionBinderFlags()
555 int32_t IPCThreadState::getLastTransactionBinderFlags() const in getLastTransactionBinderFlags()
560 void IPCThreadState::setCallRestriction(ProcessState::CallRestriction restriction) { in setCallRestriction()
564 ProcessState::CallRestriction IPCThreadState::getCallRestriction() const { in getCallRestriction()
568 void IPCThreadState::restoreCallingIdentity(int64_t token) in restoreCallingIdentity()
576 void IPCThreadState::clearCaller() in clearCaller()
583 void IPCThreadState::flushCommands() in flushCommands()
599 bool IPCThreadState::flushIfNeeded() in flushIfNeeded()
614 void IPCThreadState::blockUntilThreadAvailable() in blockUntilThreadAvailable()
628 status_t IPCThreadState::getAndExecuteCommand() in getAndExecuteCommand()
679 void IPCThreadState::processPendingDerefs() in processPendingDerefs()
713 void IPCThreadState::processPostWriteDerefs() in processPostWriteDerefs()
728 void IPCThreadState::joinThreadPool(bool isMain) in joinThreadPool()
770 status_t IPCThreadState::setupPolling(int* fd) in setupPolling()
785 status_t IPCThreadState::handlePolledCommands() in handlePolledCommands()
798 void IPCThreadState::stopProcess(bool /*immediate*/) in stopProcess()
808 status_t IPCThreadState::transact(int32_t handle, in transact()
885 void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) in incStrongHandle()
897 void IPCThreadState::decStrongHandle(int32_t handle) in decStrongHandle()
905 void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) in incWeakHandle()
917 void IPCThreadState::decWeakHandle(int32_t handle) in decWeakHandle()
925 status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) { in attemptIncStrongHandle()
931 void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) in expungeHandle()
939 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) in requestDeathNotification()
947 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) in clearDeathNotification()
955 IPCThreadState::IPCThreadState() in IPCThreadState() function in android::IPCThreadState
973 IPCThreadState::~IPCThreadState() in ~IPCThreadState()
977 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) in sendReply()
987 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) in waitForResponse()
1092 status_t IPCThreadState::talkWithDriver(bool doReceive) in talkWithDriver()
1215 status_t IPCThreadState::writeTransactionData(int32_t cmd, uint32_t binderFlags, in writeTransactionData()
1253 void IPCThreadState::setTheContextObject(const sp<BBinder>& obj) in setTheContextObject()
1258 status_t IPCThreadState::executeCommand(int32_t cmd) in executeCommand()
1513 const void* IPCThreadState::getServingStackPointer() const { in getServingStackPointer()
1517 void IPCThreadState::threadDestructor(void *st) in threadDestructor()
1519 IPCThreadState* const self = static_cast<IPCThreadState*>(st); in threadDestructor()
1531 status_t IPCThreadState::getProcessFreezeInfo(pid_t pid, uint32_t *sync_received, in getProcessFreezeInfo()
1548 status_t IPCThreadState::freeze(pid_t pid, bool enable, uint32_t timeout_ms) { in freeze()
1569 void IPCThreadState::logExtendedError() { in logExtendedError()
1586 void IPCThreadState::freeBuffer(const uint8_t* data, size_t /*dataSize*/, in freeBuffer()
1596 IPCThreadState* state = self(); in freeBuffer()