Home
last modified time | relevance | path

Searched defs:token (Results 1 – 25 of 42) sorted by relevance

12

/system/core/trusty/test/binder/aidl/com/android/trusty/binder/test/
DITestService.aidl46 boolean RepeatBoolean(boolean token); in RepeatBoolean()
47 byte RepeatByte(byte token); in RepeatByte()
48 char RepeatChar(char token); in RepeatChar()
49 int RepeatInt(int token); in RepeatInt()
50 long RepeatLong(long token); in RepeatLong()
51 float RepeatFloat(float token); in RepeatFloat()
52 double RepeatDouble(double token); in RepeatDouble()
53 String RepeatString(String token); in RepeatString()
54 ByteEnum RepeatByteEnum(ByteEnum token); in RepeatByteEnum()
55 IntEnum RepeatIntEnum(IntEnum token); in RepeatIntEnum()
[all …]
/system/hwservicemanager/
DTokenManager.cpp31 namespace token { namespace
94 TokenManager::lookupToken(const hidl_vec<uint8_t> &token) { in lookupToken()
117 Return<bool> TokenManager::unregister(const hidl_vec<uint8_t> &token) { in unregister()
130 Return<sp<IBase>> TokenManager::get(const hidl_vec<uint8_t> &token) { in get()
159 const hidl_vec<uint8_t> &token = makeToken(id, hmac.data(), hmacSize); in generateToken() local
178 uint64_t TokenManager::getTokenId(const hidl_vec<uint8_t> &token) { in getTokenId()
191 hidl_vec<uint8_t> token; in makeToken() local
DTokenManager.h64 hidl_vec<uint8_t> token; // First eight bytes are tokenId. Remaining bytes are hmac. member
/system/tools/aidl/tests/java/src/android/aidl/sdkversion/service/
DAidlJavaVersionTestService.java28 public boolean RepeatBoolean(boolean token) { in RepeatBoolean()
33 public TypedObject RepeatTypedObject(TypedObject token) { in RepeatTypedObject()
38 public List<TypedObject> RepeatTypedList(List<TypedObject> token) { in RepeatTypedList()
/system/tools/aidl/tests/java/src/android/aidl/sdkversion/
DITestService.aidl20 boolean RepeatBoolean(boolean token); in RepeatBoolean()
28 @nullable TypedObject RepeatTypedObject(in @nullable TypedObject token); in RepeatTypedObject()
/system/tools/aidl/tests/android/aidl/tests/
DITestService.aidl114 boolean RepeatBoolean(boolean token); in RepeatBoolean()
115 byte RepeatByte(byte token); in RepeatByte()
116 char RepeatChar(char token); in RepeatChar()
117 int RepeatInt(int token); in RepeatInt()
118 long RepeatLong(long token); in RepeatLong()
119 float RepeatFloat(float token); in RepeatFloat()
120 double RepeatDouble(double token); in RepeatDouble()
121 String RepeatString(String token); in RepeatString()
122 ByteEnum RepeatByteEnum(ByteEnum token); in RepeatByteEnum()
123 IntEnum RepeatIntEnum(IntEnum token); in RepeatIntEnum()
[all …]
/system/libhidl/transport/token/1.0/utils/
DHybridInterface.cpp76 sp<HInterface> retrieveHalInterface(const HalToken& token) { in retrieveHalInterface()
91 bool createHalToken(const sp<HInterface>& interface, HalToken* token) { in createHalToken()
105 bool deleteHalToken(const HalToken& token) { in deleteHalToken()
/system/tools/aidl/tests/java/src/android/aidl/sdkversion/tests/
DAidlJavaVersionTests.java67 TypedObject token = new TypedObject(); in testTypedObject() local
68 assertEquals(mService.RepeatTypedObject(token), token); in testTypedObject() local
/system/security/keystore/tests/
Dverification_token_seralization_test.cpp32 VerificationToken token; in TEST() local
52 VerificationToken token; in TEST() local
/system/keymaster/tests/
Dkeymaster_enforcement_test.cpp54 bool auth_token_timed_out(const hw_auth_token_t& token, uint32_t timeout) const override { in auth_token_timed_out() argument
583 hw_auth_token_t token; in TEST_F() local
606 hw_auth_token_t token; in TEST_F() local
635 hw_auth_token_t token; in TEST_F() local
659 hw_auth_token_t token; in TEST_F() local
686 hw_auth_token_t token; in TEST_F() local
715 hw_auth_token_t token; in TEST_F() local
744 hw_auth_token_t token; in TEST_F() local
767 hw_auth_token_t token; in TEST_F() local
820 hw_auth_token_t token; in TEST_F() local
[all …]
/system/tools/aidl/tests/java/src/android/aidl/service/
DTestServiceServer.java154 public boolean RepeatBoolean(boolean token) throws RemoteException { in RepeatBoolean()
158 public byte RepeatByte(byte token) throws RemoteException { in RepeatByte()
162 public char RepeatChar(char token) throws RemoteException { in RepeatChar()
166 public int RepeatInt(int token) throws RemoteException { in RepeatInt()
170 public long RepeatLong(long token) throws RemoteException { in RepeatLong()
174 public float RepeatFloat(float token) throws RemoteException { in RepeatFloat()
178 public double RepeatDouble(double token) throws RemoteException { in RepeatDouble()
182 public String RepeatString(String token) throws RemoteException { in RepeatString()
186 public byte RepeatByteEnum(byte token) throws RemoteException { in RepeatByteEnum()
190 public int RepeatIntEnum(int token) throws RemoteException { in RepeatIntEnum()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
DBnTestService.h105 ::android::binder::Status RepeatBoolean(bool token, bool* _aidl_return) override { in RepeatBoolean()
108 ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) override { in RepeatByte()
111 ::android::binder::Status RepeatChar(char16_t token, char16_t* _aidl_return) override { in RepeatChar()
114 ::android::binder::Status RepeatInt(int32_t token, int32_t* _aidl_return) override { in RepeatInt()
117 ::android::binder::Status RepeatLong(int64_t token, int64_t* _aidl_return) override { in RepeatLong()
120 ::android::binder::Status RepeatFloat(float token, float* _aidl_return) override { in RepeatFloat()
123 ::android::binder::Status RepeatDouble(double token, double* _aidl_return) override { in RepeatDouble()
126 …Status RepeatString(const ::android::String16& token, ::android::String16* _aidl_return) override { in RepeatString()
129 …::android::binder::Status RepeatByteEnum(::android::aidl::tests::ByteEnum token, ::android::aidl::… in RepeatByteEnum()
132 …::android::binder::Status RepeatIntEnum(::android::aidl::tests::IntEnum token, ::android::aidl::te… in RepeatIntEnum()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
DITestService.java37 @Override public boolean RepeatBoolean(boolean token) throws android.os.RemoteException in RepeatBoolean()
41 @Override public byte RepeatByte(byte token) throws android.os.RemoteException in RepeatByte()
45 @Override public char RepeatChar(char token) throws android.os.RemoteException in RepeatChar()
49 @Override public int RepeatInt(int token) throws android.os.RemoteException in RepeatInt()
53 @Override public long RepeatLong(long token) throws android.os.RemoteException in RepeatLong()
57 @Override public float RepeatFloat(float token) throws android.os.RemoteException in RepeatFloat()
61 @Override public double RepeatDouble(double token) throws android.os.RemoteException in RepeatDouble()
65 …@Override public java.lang.String RepeatString(java.lang.String token) throws android.os.RemoteExc… in RepeatString()
69 @Override public byte RepeatByteEnum(byte token) throws android.os.RemoteException in RepeatByteEnum()
73 @Override public int RepeatIntEnum(int token) throws android.os.RemoteException in RepeatIntEnum()
[all …]
/system/chre/core/
Dlog.cc25 void EncodeTokenizedMessage(uint32_t level, pw_tokenizer_Token token, in EncodeTokenizedMessage()
/system/hardware/interfaces/suspend/aidl/android/system/suspend/internal/
DISuspendControlServiceInternal.aidl36 boolean enableAutosuspend(IBinder token); in enableAutosuspend()
/system/security/keystore/include/keystore/
DOperationResult.h35 sp<IBinder> token; member
Dkeystore_hidl_support.h88 inline static hidl_vec<uint8_t> authToken2HidlVec(const Km3HardwareAuthToken& token) { in authToken2HidlVec()
120 Km3HardwareAuthToken token; in hidlVec2Km3AuthToken() local
/system/core/trusty/keymaster/keymint/
DTrustySecureClock.cpp29 TimeStampToken* token) { in generateTimeStamp()
/system/tools/hidl/lint/lints/
DenumMaxAndAll.cpp49 for (const std::string& token : tokens) { in enumValueNames() local
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
DITestService.cpp129 ::android::binder::Status BpTestService::RepeatBoolean(bool token, bool* _aidl_return) { in RepeatBoolean()
168 ::android::binder::Status BpTestService::RepeatByte(int8_t token, int8_t* _aidl_return) { in RepeatByte()
207 ::android::binder::Status BpTestService::RepeatChar(char16_t token, char16_t* _aidl_return) { in RepeatChar()
246 ::android::binder::Status BpTestService::RepeatInt(int32_t token, int32_t* _aidl_return) { in RepeatInt()
285 ::android::binder::Status BpTestService::RepeatLong(int64_t token, int64_t* _aidl_return) { in RepeatLong()
324 ::android::binder::Status BpTestService::RepeatFloat(float token, float* _aidl_return) { in RepeatFloat()
363 ::android::binder::Status BpTestService::RepeatDouble(double token, double* _aidl_return) { in RepeatDouble()
402 … BpTestService::RepeatString(const ::android::String16& token, ::android::String16* _aidl_return) { in RepeatString()
441 ::android::binder::Status BpTestService::RepeatByteEnum(::android::aidl::tests::ByteEnum token, ::a… in RepeatByteEnum()
480 ::android::binder::Status BpTestService::RepeatIntEnum(::android::aidl::tests::IntEnum token, ::and… in RepeatIntEnum()
[all …]
/system/tools/aidl/tests/
Daidl_test_service.cpp300 void LogRepeatedStringToken(const String16& token) { in LogRepeatedStringToken()
306 void LogRepeatedToken(const T& token) { in LogRepeatedToken()
316 Status RepeatBoolean(bool token, bool* _aidl_return) override { in RepeatBoolean()
321 Status RepeatByte(int8_t token, int8_t* _aidl_return) override { in RepeatByte()
326 Status RepeatChar(char16_t token, char16_t* _aidl_return) override { in RepeatChar()
331 Status RepeatInt(int32_t token, int32_t* _aidl_return) override { in RepeatInt()
336 Status RepeatLong(int64_t token, int64_t* _aidl_return) override { in RepeatLong()
341 Status RepeatFloat(float token, float* _aidl_return) override { in RepeatFloat()
346 Status RepeatDouble(double token, double* _aidl_return) override { in RepeatDouble()
351 Status RepeatString(const String16& token, String16* _aidl_return) override { in RepeatString()
[all …]
/system/keymaster/ng/
DAndroidSecureClock.cpp41 ScopedAStatus AndroidSecureClock::generateTimeStamp(int64_t challenge, TimeStampToken* token) { in generateTimeStamp()
DKeyMintUtils.cpp116 vector<uint8_t> authToken2AidlVec(const std::optional<HardwareAuthToken>& token) { in authToken2AidlVec()
/system/tools/aidl/tests/java/src/android/aidl/tests/
DDelegatorTests.java39 public byte RepeatByte(byte token) throws RemoteException { in RepeatByte()
/system/keymaster/ng/include/
Dkeystore_hidl_support.h101 inline static hidl_vec<uint8_t> authToken2HidlVec(const HardwareAuthToken& token) { in authToken2HidlVec()

12