Searched refs:match_count (Results 1 – 12 of 12) sorted by relevance
/external/vboot_reference/cgpt/ |
D | cgpt.c | 57 int match_count = 0; in main() local 80 match_count = 1; in main() 86 match_count++; in main() 90 if (match_count == 1) in main()
|
/external/lldb/examples/darwin/heap_find/heap/ |
D | heap_find.cpp | 203 uint32_t match_count; member 706 ++info->match_count; in range_info_callback() 730 ++info->match_count; in range_info_callback() 785 ++info->match_count; in range_info_callback() 914 data_info.match_count = 0; // Initialize the match count to zero in find_pointer_in_heap() 942 data_info.match_count = 0; // Initialize the match count to zero in find_pointer_in_memory() 968 data_info.match_count = 0; // Initialize the match count to zero in find_objc_objects_in_memory() 995 data_info.match_count = 0; // Initialize the match count to zero in get_heap_info() 1043 data_info.match_count = 0; // Initialize the match count to zero in find_cstring_in_heap() 1065 data_info.match_count = 0; // Initialize the match count to zero in find_block_for_address()
|
/external/lldb/tools/darwin-threads/ |
D | examine-threads.c | 39 int match_count = 0; in get_pid_for_process_name() local 50 match_count++; in get_pid_for_process_name() 57 if (match_count == 0) in get_pid_for_process_name() 62 if (match_count > 1) in get_pid_for_process_name()
|
/external/lldb/source/Plugins/Platform/FreeBSD/ |
D | PlatformFreeBSD.cpp | 448 uint32_t match_count = 0; in FindProcesses() local 452 match_count = Platform::FindProcesses (match_info, process_infos); in FindProcesses() 458 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos); in FindProcesses() 460 return match_count; in FindProcesses()
|
/external/lldb/source/Commands/ |
D | CommandObjectHelp.cpp | 167 const size_t match_count = matches.GetSize(); in DoExecute() local 168 for (size_t i = 0; i < match_count; i++) in DoExecute()
|
/external/pcre/dist/ |
D | pcre_dfa_exec.c | 418 int active_count, new_count, match_count; in internal_dfa_exec() local 450 match_count = PCRE_ERROR_NOMATCH; /* A negative number */ in internal_dfa_exec() 790 if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0; in internal_dfa_exec() 791 else if (match_count > 0 && ++match_count * 2 > offsetcount) in internal_dfa_exec() 792 match_count = 0; in internal_dfa_exec() 793 count = ((match_count == 0)? offsetcount : match_count * 2) - 2; in internal_dfa_exec() 806 match_count, rlevel*2-2, SP)); in internal_dfa_exec() 807 return match_count; in internal_dfa_exec() 3115 match_count < 0) /* no matches */ in internal_dfa_exec() 3124 match_count = PCRE_ERROR_PARTIAL; in internal_dfa_exec() [all …]
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformDarwin.cpp | 577 uint32_t match_count = 0; in FindProcesses() local 581 match_count = Platform::FindProcesses (match_info, process_infos); in FindProcesses() 587 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos); in FindProcesses() 589 return match_count; in FindProcesses()
|
/external/lldb/source/Target/ |
D | Platform.cpp | 629 uint32_t match_count = 0; in FindProcesses() local 631 match_count = Host::FindProcesses (match_info, process_infos); in FindProcesses() 632 return match_count; in FindProcesses()
|
/external/lldb/source/API/ |
D | SBModule.cpp | 464 const uint32_t match_count = module_sp->FindGlobalVariables (ConstString (name), in FindGlobalVariables() local 470 if (match_count > 0) in FindGlobalVariables() 472 for (uint32_t i=0; i<match_count; ++i) in FindGlobalVariables()
|
D | SBTarget.cpp | 2252 … const uint32_t match_count = target_sp->GetImages().FindGlobalVariables (ConstString (name), in FindGlobalVariables() local 2257 if (match_count > 0) in FindGlobalVariables() 2262 for (uint32_t i=0; i<match_count; ++i) in FindGlobalVariables()
|
/external/lldb/source/Symbol/ |
D | SymbolContext.cpp | 1161 uint32_t match_count = 0; in NumLineEntriesWithLine() local 1166 ++match_count; in NumLineEntriesWithLine() 1168 return match_count; in NumLineEntriesWithLine()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDebugMap.cpp | 875 const size_t match_count = indexes.size(); in PrivateFindGlobalVariables() local 876 for (size_t i=0; i<match_count; ++i) in PrivateFindGlobalVariables()
|