HomeSort by relevance Sort by last modified time
    Searched refs:iat (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/interception/
interception_win.cc 872 // We have two parallel arrays: the import address table (IAT) and the table
874 // the IAT to hold imported addresses and leaves the name table in
877 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk);
878 for (; name_table->u1.Ordinal != 0; ++name_table, ++iat) {
890 // Now we have the correct IAT entry. Do the swap. We have to make the page
893 *orig_old_func = iat->u1.AddressOfData;
895 if (!VirtualProtect(&iat->u1.AddressOfData, 4, PAGE_EXECUTE_READWRITE,
898 iat->u1.AddressOfData = new_function;
899 if (!VirtualProtect(&iat->u1.AddressOfData, 4, old_prot, &unused_prot))
  /external/clang/lib/AST/
ASTContext.cpp 2722 const IncompleteArrayType *iat = cast<IncompleteArrayType>(ty); local
    [all...]

Completed in 180 milliseconds