Searched refs:fFunctions (Results 1 - 6 of 6) sorted by relevance

/haiku/src/kits/debugger/debug_info/
H A DImageDebugInfo.cpp28 for (int32 i = 0; FunctionInstance* function = fFunctions.ItemAt(i); i++)
73 || !fFunctions.BinaryInsert(instance, &_CompareFunctions)) {
146 return fFunctions.CountItems();
153 return fFunctions.ItemAt(index);
160 return fFunctions.BinarySearchByKey(address, &_CompareAddressFunction);
168 for (int32 i = 0; FunctionInstance* function = fFunctions.ItemAt(i); i++) {
H A DTeamDebugInfo.cpp136 return fFunctions.IsEmpty();
141 if (!fFunctions.BinaryInsert(function, &_CompareFunctions))
149 int32 index = fFunctions.BinarySearchIndex(*function,
152 fFunctions.RemoveItemAt(index);
157 int32 index = fFunctions.BinarySearchIndexByKey(location,
160 return fFunctions.ItemAt(index);
169 return fFunctions.ItemAt(index - 1);
174 return fFunctions.ItemAt(index);
180 for (int32 i = 0; Function* function = fFunctions.ItemAt(i); i++) {
222 FunctionList fFunctions; member in struct:TeamDebugInfo::SourceFileEntry
[all...]
/haiku/src/bin/debug/profile/
H A DCallgrindProfileResult.cpp26 fFunctions(NULL),
37 = fFunctions[i].calledFunctions) {
38 fFunctions[i].calledFunctions = calledFunction->next;
43 delete[] fFunctions;
51 fFunctions = new(std::nothrow) CallgrindFunction[symbolCount];
52 if (fFunctions == NULL)
55 memset(fFunctions, 0, sizeof(CallgrindFunction) * symbolCount);
68 CallgrindFunction& function = fFunctions[symbolIndex];
100 return fFunctions;
H A DCallgrindProfileResult.h61 CallgrindFunction* fFunctions; member in class:CallgrindImageProfileResult
/haiku/headers/private/debugger/debug_info/
H A DImageDebugInfo.h83 FunctionList fFunctions; member in class:ImageDebugInfo
H A DTeamDebugInfo.h115 FunctionTable* fFunctions; member in class:TeamDebugInfo

Completed in 59 milliseconds