Home
last modified time | relevance | path

Searched full:iat (Results 1 – 25 of 92) sorted by relevance

1234

/external/python/oauth2client/tests/
Dtest_crypt.py191 'No iat field in token'))
194 payload_dict = {'iat': 'iat'}
203 'iat': 'iat',
218 'iat': current_time + crypt.CLOCK_SKEW_SECS + 1,
233 'iat': current_time,
248 'iat': current_time,
Dtest_jwt.py102 'iat': now,
176 'iat': time.time(),
185 self._check_jwt_failure(jwt, 'No iat field in token')
190 'iat': time.time() + 301,
198 'iat': time.time() - 500,
206 'iat': time.time(),
Dtest_service_account.py408 self.assertEqual(payload['iat'], T1)
418 self.assertEqual(payload['iat'], T1)
430 self.assertEqual(payload['iat'], T3)
451 self.assertEqual(payload['iat'], T1)
487 self.assertEqual(payload['iat'], T1)
522 self.assertEqual(payload['iat'], T1)
/external/grpc-grpc/test/core/security/
Djson_token_test.cc270 grpc_json* iat = nullptr; in check_jwt_claim() local
285 } else if (strcmp(ptr->key, "iat") == 0) { in check_jwt_claim()
286 iat = ptr; in check_jwt_claim()
319 GPR_ASSERT(iat != nullptr); in check_jwt_claim()
320 GPR_ASSERT(iat->type == GRPC_JSON_NUMBER); in check_jwt_claim()
321 issue_time.tv_sec = strtol(iat->value, nullptr, 10); in check_jwt_claim()
/external/python/oauth2client/oauth2client/
Dcrypt.py165 AppIdentityError: If there is no ``'iat'`` field in the payload
181 issued_at = payload_dict.get('iat')
184 'No iat field in token: {0}'.format(payload_dict))
/external/compiler-rt/lib/interception/
Dinterception_win.cc872 // We have two parallel arrays: the import address table (IAT) and the table in OverrideImportedFunction()
874 // the IAT to hold imported addresses and leaves the name table in in OverrideImportedFunction()
877 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk); in OverrideImportedFunction() local
878 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) { in OverrideImportedFunction()
890 // Now we have the correct IAT entry. Do the swap. We have to make the page in OverrideImportedFunction()
893 *orig_old_func = iat->u1.AddressOfData; in OverrideImportedFunction()
895 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE, in OverrideImportedFunction()
898 iat->u1.AddressOfData = new_function; in OverrideImportedFunction()
899 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot)) in OverrideImportedFunction()
/external/llvm-project/lld/test/COFF/
Dautoimport-x86.s28 # Relative offset at 0x1002 pointing at the IAT at 0x2080.
41 # ptr: pointing at the IAT RVA at 0x2080
Darm64-localimport-align.s24 // pointer, just like regular LookupChunks in the IAT.
/external/llvm-project/compiler-rt/lib/interception/
Dinterception_win.cpp988 // We have two parallel arrays: the import address table (IAT) and the table in OverrideImportedFunction()
990 // the IAT to hold imported addresses and leaves the name table in in OverrideImportedFunction()
993 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk); in OverrideImportedFunction() local
994 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) { in OverrideImportedFunction()
1006 // Now we have the correct IAT entry. Do the swap. We have to make the page in OverrideImportedFunction()
1009 *orig_old_func = iat->u1.AddressOfData; in OverrideImportedFunction()
1011 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE, in OverrideImportedFunction()
1014 iat->u1.AddressOfData = new_function; in OverrideImportedFunction()
1015 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot)) in OverrideImportedFunction()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/jwt/
Djwt_verifier.cc190 gpr_timespec iat; member
229 return claims->iat; in grpc_jwt_claims_issued_at()
246 claims->iat = gpr_inf_past(GPR_CLOCK_REALTIME); in grpc_jwt_claims_from_json()
264 } else if (p.first == "iat") { in grpc_jwt_claims_from_json()
265 claims->iat = validate_time_field(p.second, "iat"); in grpc_jwt_claims_from_json()
266 if (gpr_time_cmp(claims->iat, gpr_time_0(GPR_CLOCK_REALTIME)) == 0) { in grpc_jwt_claims_from_json()
/external/grpc-grpc/src/core/lib/security/credentials/jwt/
Djwt_verifier.cc181 gpr_timespec iat; member
222 return claims->iat; in grpc_jwt_claims_issued_at()
243 claims->iat = gpr_inf_past(GPR_CLOCK_REALTIME); in grpc_jwt_claims_from_json()
261 } else if (strcmp(cur->key, "iat") == 0) { in grpc_jwt_claims_from_json()
262 claims->iat = validate_time_field(cur, "iat"); in grpc_jwt_claims_from_json()
263 if (gpr_time_cmp(claims->iat, gpr_time_0(GPR_CLOCK_REALTIME)) == 0) in grpc_jwt_claims_from_json()
/external/python/google-api-python-client/docs/dyn/
Diamcredentials_v1.projects.serviceAccounts.html218 # - iat: Issue time in seconds since epoch. Must be in the past.
220 # after iat. We recommend to create tokens that last shorter than 6
245 # "iat": 1517963104,
/external/llvm-project/llvm/test/tools/llvm-objcopy/COFF/Inputs/
Di386-exe.yaml55 IAT:
Dx86_64-exe.yaml55 IAT:
/external/llvm-project/lldb/test/Shell/Minidump/Windows/Inputs/
Darm-fp-unwind.exe.yaml55 IAT:
Dbroken-unwind.exe.yaml58 IAT:
/external/llvm-project/lldb/test/Shell/ObjectFile/PECOFF/
Dbasic-info-arm.yaml67 IAT:
Dinvalid-export-table.yaml62 IAT:
Dbasic-info-arm64.yaml67 IAT:
Dbasic-info.yaml67 IAT:
Dsection-types.yaml63 IAT:
Duuid.yaml61 IAT:
Ddisassemble-thumb.yaml63 IAT:
/external/llvm-project/lldb/test/Shell/Process/Windows/
Dlaunch_failure.yaml66 IAT:
/external/llvm-project/llvm/test/tools/llvm-objdump/COFF/Inputs/
Deh_frame-coff.yaml55 IAT:

1234