Searched defs:user (Results 1 - 4 of 4) sorted by relevance

/system/security/keystore/
H A Dpermissions.cpp151 struct user_euid user = user_euids[i]; local
152 if (user.uid == uid) {
153 return user.euid;
161 // All system users are equivalent for multi-user support.
167 struct user_perm user = user_perms[i]; local
168 if (user.uid == uid) {
169 return (user.perms & perm) && keystore_selinux_check_access(uid, perm, spid);
185 struct user_euid user = user_euids[i]; local
186 if (user.euid == callingUid && user
[all...]
/system/core/libunwindstack/
H A DRegs.cpp149 arm_user_regs* user = reinterpret_cast<arm_user_regs*>(remote_data); local
152 memcpy(regs->RawData(), &user->regs[0], ARM_REG_LAST * sizeof(uint32_t));
158 arm64_user_regs* user = reinterpret_cast<arm64_user_regs*>(remote_data); local
161 memcpy(regs->RawData(), &user->regs[0], (ARM64_REG_R31 + 1) * sizeof(uint64_t));
163 reg_data[ARM64_REG_PC] = user->pc;
164 reg_data[ARM64_REG_SP] = user->sp;
170 x86_user_regs* user = reinterpret_cast<x86_user_regs*>(remote_data); local
173 (*regs)[X86_REG_EAX] = user->eax;
174 (*regs)[X86_REG_EBX] = user->ebx;
175 (*regs)[X86_REG_ECX] = user
188 x86_64_user_regs* user = reinterpret_cast<x86_64_user_regs*>(remote_data); local
[all...]
/system/core/libutils/
H A DThreads.cpp711 int Thread::_threadLoop(void* user) argument
713 Thread* const self = static_cast<Thread*>(user);
/system/tpm/attestation/server/
H A Dattestation_service.cc713 LOG(ERROR) << __func__ << ": Failed to store certified key for user.";
801 int AttestationService::ChooseTemporalIndex(const std::string& user, argument
803 std::string user_hash = crypto::SHA256HashString(user);
816 // We've previously chosen this index for this user, reuse it.
819 // We've previously chosen this index for another user.

Completed in 1902 milliseconds