HomeSort by: relevance | last modified time | path
    Searched refs:iat (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.cc 983 // We have two parallel arrays: the import address table (IAT) and the table
985 // the IAT to hold imported addresses and leaves the name table in
988 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk);
989 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) {
1001 // Now we have the correct IAT entry. Do the swap. We have to make the page
1004 *orig_old_func = iat->u1.AddressOfData;
1006 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE,
1009 iat->u1.AddressOfData = new_function;
1010 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot))
  /src/external/gpl3/gcc/dist/libsanitizer/interception/
interception_win.cpp 1095 // We have two parallel arrays: the import address table (IAT) and the table
1097 // the IAT to hold imported addresses and leaves the name table in
1100 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk);
1101 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) {
1113 // Now we have the correct IAT entry. Do the swap. We have to make the page
1116 *orig_old_func = iat->u1.AddressOfData;
1118 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE,
1121 iat->u1.AddressOfData = new_function;
1122 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot))
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_win.cpp 1034 // We have two parallel arrays: the import address table (IAT) and the table
1036 // the IAT to hold imported addresses and leaves the name table in
1039 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk);
1040 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) {
1052 // Now we have the correct IAT entry. Do the swap. We have to make the page
1055 *orig_old_func = iat->u1.AddressOfData;
1057 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE,
1060 iat->u1.AddressOfData = new_function;
1061 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot))
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 3579 const auto *iat = cast<IncompleteArrayType>(ty); local
3581 getVariableArrayDecayedType(iat->getElementType()),
3584 iat->getIndexTypeCVRQualifiers(),
3711 if (IncompleteArrayType *iat =
3713 return QualType(iat, 0);
5750 if (const auto *IAT = dyn_cast<IncompleteArrayType>(AT)) {
5751 return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
6122 if (const auto *IAT = dyn_cast<IncompleteArrayType>(ATy))
6124 IAT->getSizeModifier(),
6125 IAT->getIndexTypeCVRQualifiers()))
    [all...]

Completed in 26 milliseconds