OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blocked_index
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome_elf/blacklist/
blacklist.h
72
void BlockedDll(size_t
blocked_index
);
blacklist.cc
304
void BlockedDll(size_t
blocked_index
) {
305
assert(
blocked_index
< kTroublesomeDllsMaxCount);
307
if (!g_blocked_dlls[
blocked_index
] &&
308
blocked_index
< kTroublesomeDllsMaxCount) {
310
g_blocked_dlls[
blocked_index
] = true;
blacklist_interceptions.cc
208
int
blocked_index
= DllMatch(module_name);
local
209
if (
blocked_index
!= -1) {
214
blacklist::BlockedDll(
blocked_index
);
Completed in 170 milliseconds