Home | History | Annotate | Download | only in binder

Lines Matching full:token

365     int64_t token = ((int64_t)mCallingUid<<32) | mCallingPid;
367 return token;
370 void IPCThreadState::restoreCallingIdentity(int64_t token)
372 mCallingUid = (int)(token>>32);
373 mCallingPid = (int)token;