Home
last modified time | relevance | path

Searched refs:DCHECK_NT (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/sandbox/win/src/
Dsandbox_nt_util.h39 #define DCHECK_NT(condition) { (condition) ? (void)0 : __debugbreak(); } macro
40 #define VERIFY(action) DCHECK_NT(action)
41 #define VERIFY_SUCCESS(action) DCHECK_NT(NT_SUCCESS(action))
43 #define DCHECK_NT(condition) macro
50 #define NOTREACHED_NT() DCHECK_NT(false)
Dpolicy_target.cc30 DCHECK_NT(static_cast<size_t>(ipc_id) < kMaxServiceCount); in QueryBroker()
31 DCHECK_NT(g_shared_policy_memory); in QueryBroker()
32 DCHECK_NT(g_shared_policy_size > 0); in QueryBroker()
64 DCHECK_NT(POLICY_ERROR != result); in QueryBroker()
Dsandbox_nt_util.cc139 DCHECK_NT(g_shared_IPC_size > 0); in MapGlobalMemory()
143 DCHECK_NT(g_shared_policy_memory); in MapGlobalMemory()
144 DCHECK_NT(g_shared_policy_size > 0); in MapGlobalMemory()
199 DCHECK_NT(size); in ValidParameter()
225 DCHECK_NT(out_name); in AllocAndCopyName()
354 DCHECK_NT(STATUS_BUFFER_OVERFLOW != ret); in AnsiToUnicode()
455 DCHECK_NT(kuint16max > size_bytes); in ExtractModuleName()
477 DCHECK_NT(!changed_); in ChangeProtection()
494 DCHECK_NT(address_); in RevertProtection()
495 DCHECK_NT(bytes_); in RevertProtection()
[all …]
Dinterception_agent.cc114 DCHECK_NT(dlls_[i]); in OnDllLoad()
150 DCHECK_NT(NULL != thunks); in PatchDll()
151 DCHECK_NT(NULL != dll_info); in PatchDll()
188 DCHECK_NT(!g_originals[function->id]); in PatchDll()
Dsidestep_resolver.cc193 DCHECK_NT(base); in IsInternalCall()
194 DCHECK_NT(return_address); in IsInternalCall()
Dresolver.cc46 DCHECK_NT(address); in ResolveInterceptor()
Deat_resolver.cc65 DCHECK_NT(address); in ResolveTarget()
Dservice_resolver_64.cc178 DCHECK_NT(GetInternalThunkSize() >= sizeof(local_service)); in PerformPatch()
Dwin_utils.cc128 DCHECK_NT(!path.empty()); in SameObject()
/external/chromium_org/chrome_elf/blacklist/
Dblacklist_interceptions.cc51 DCHECK_NT(g_nt_query_virtual_memory_func); in GetBackingModuleFilePath()
92 DCHECK_NT(g_nt_query_section_func); in IsModuleValidImageSection()
210 DCHECK_NT(g_nt_unmap_view_of_section_func); in BlNtMapViewOfSectionImpl()
/external/chromium_org/sandbox/win/src/sidestep/
Dpreamble_patcher_with_stub.cpp45 #define ASSERT(a, b) DCHECK_NT(a)