Home
last modified time | relevance | path

Searched refs:current_instance (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/client/windows/tests/crash_generation_app/
Dcrash_generation_app.cc67 HINSTANCE current_instance; // Current instance. variable
116 current_instance = instance; in InitInstance()
375 DialogBox(current_instance, in WndProc()
/external/v8/src/wasm/
Dwasm-module.cc2111 WasmCompiledModule* current_instance = compiled_module; in ValidateInstancesChain() local
2112 while (current_instance->has_weak_next_instance()) { in ValidateInstancesChain()
2113 CHECK((prev == nullptr && !current_instance->has_weak_prev_instance()) || in ValidateInstancesChain()
2114 current_instance->ptr_to_weak_prev_instance()->value() == prev); in ValidateInstancesChain()
2115 CHECK_EQ(current_instance->ptr_to_weak_wasm_module()->value(), in ValidateInstancesChain()
2118 current_instance->ptr_to_weak_owning_instance()->value())); in ValidateInstancesChain()
2119 prev = current_instance; in ValidateInstancesChain()
2120 current_instance = WasmCompiledModule::cast( in ValidateInstancesChain()
2121 current_instance->ptr_to_weak_next_instance()->value()); in ValidateInstancesChain()