• Home
  • Raw
  • Download

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()
414 void IPCThreadState::blockUntilThreadAvailable() in blockUntilThreadAvailable()
426 status_t IPCThreadState::getAndExecuteCommand() in getAndExecuteCommand()
470 void IPCThreadState::processPendingDerefs() in processPendingDerefs()
493 void IPCThreadState::joinThreadPool(bool isMain) in joinThreadPool()
525 int IPCThreadState::setupPolling(int* fd) in setupPolling()
536 status_t IPCThreadState::handlePolledCommands() in handlePolledCommands()
549 void IPCThreadState::stopProcess(bool /*immediate*/) in stopProcess()
559 status_t IPCThreadState::transact(int32_t handle, in transact()
621 void IPCThreadState::incStrongHandle(int32_t handle) in incStrongHandle()
628 void IPCThreadState::decStrongHandle(int32_t handle) in decStrongHandle()
635 void IPCThreadState::incWeakHandle(int32_t handle) in incWeakHandle()
642 void IPCThreadState::decWeakHandle(int32_t handle) in decWeakHandle()
649 status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) in attemptIncStrongHandle()
673 void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) in expungeHandle()
681 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) in requestDeathNotification()
689 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) in clearDeathNotification()
697 IPCThreadState::IPCThreadState() in IPCThreadState() function in android::IPCThreadState
708 IPCThreadState::~IPCThreadState() in ~IPCThreadState()
712 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) in sendReply()
722 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) in waitForResponse()
813 status_t IPCThreadState::talkWithDriver(bool doReceive) in talkWithDriver()
914 status_t IPCThreadState::writeTransactionData(int32_t cmd, uint32_t binderFlags, in writeTransactionData()
957 status_t IPCThreadState::executeCommand(int32_t cmd) in executeCommand()
1154 void IPCThreadState::threadDestructor(void *st) in threadDestructor()
1156 IPCThreadState* const self = static_cast<IPCThreadState*>(st); in threadDestructor()
1169 void IPCThreadState::freeBuffer(Parcel* parcel, const uint8_t* data, in freeBuffer()
1180 IPCThreadState* state = self(); in freeBuffer()