OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flagbit
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
execution.cc
340
bool StackGuard::CheckInterrupt(int
flagbit
) {
342
return thread_local_.interrupt_flags_ &
flagbit
;
346
void StackGuard::RequestInterrupt(int
flagbit
) {
348
thread_local_.interrupt_flags_ |=
flagbit
;
353
void StackGuard::ClearInterrupt(int
flagbit
) {
355
thread_local_.interrupt_flags_ &= ~
flagbit
;
364
int
flagbit
= 1 << flag;
local
365
bool result = (thread_local_.interrupt_flags_ &
flagbit
);
366
thread_local_.interrupt_flags_ &= ~
flagbit
;
execution.h
201
bool CheckInterrupt(int
flagbit
);
202
void RequestInterrupt(int
flagbit
);
203
void ClearInterrupt(int
flagbit
);
Completed in 218 milliseconds