Searched refs:predicate (Results 1 – 7 of 7) sorted by relevance
/bionic/tools/relocation_packer/src/ |
D | debug.h | 41 Logger(Severity severity, int level, bool predicate); 93 #define LOG_IF(severity, predicate) \ argument 95 (predicate)) \ 103 #define VLOG_IF(level, predicate) \ argument 105 (predicate)) \ 109 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \ argument 111 << __FUNCTION__ << ": CHECK '" #predicate "' failed")
|
D | debug.cc | 15 Logger::Logger(Severity severity, int level, bool predicate) { in Logger() argument 18 predicate_ = predicate; in Logger()
|
/bionic/libc/async_safe/include/async_safe/ |
D | log.h | 117 #define CHECK(predicate) \ argument 119 if (!(predicate)) { \ 120 async_safe_fatal("%s:%d: %s CHECK '" #predicate "' failed", \
|
/bionic/linker/ |
D | linked_list.h | 174 void remove_if(F predicate) { in remove_if() argument 176 if (predicate(e->element)) { in remove_if() 205 T* find_if(F predicate) const { in find_if() argument 207 if (predicate(e->element)) { in find_if()
|
D | linker.cpp | 1132 auto predicate = [&](soinfo* si) { in find_loaded_library_by_inode() local 1140 *candidate = ns->soinfo_list().find_if(predicate); in find_loaded_library_by_inode() 1145 soinfo* si = linked_ns->soinfo_list().find_if(predicate); in find_loaded_library_by_inode() 1159 auto predicate = [&](soinfo* si) { return strcmp(realpath, si->get_realpath()) == 0; }; in find_loaded_library_by_realpath() local 1161 *candidate = ns->soinfo_list().find_if(predicate); in find_loaded_library_by_realpath() 1166 soinfo* si = linked_ns->soinfo_list().find_if(predicate); in find_loaded_library_by_realpath()
|
/bionic/tests/ |
D | math_data_test.h | 170 FpUlpEq<ULP, RT> predicate; 172 EXPECT_PRED_FORMAT2(predicate, 216 FpUlpEq<ULP, RT> predicate; 218 EXPECT_PRED_FORMAT2(predicate, 295 FpUlpEq<ULP, RT> predicate; 297 EXPECT_PRED_FORMAT2(predicate,
|
/bionic/libc/bionic/ |
D | pthread_atfork.cpp | 77 void remove_if(F predicate) { in remove_if() argument 80 if (predicate(it)) { in remove_if()
|