Home
last modified time | relevance | path

Searched refs:foundName (Results 1 – 5 of 5) sorted by relevance

/haiku/src/preferences/repositories/
H A DRepositoriesSettings.cpp63 BString foundName, foundUrl; in GetRepositories() local
66 status_t result1 = settings.FindString(key_name, index, &foundName); in GetRepositories()
69 nameList.Add(foundName); in GetRepositories()
/haiku/src/tools/elfsymbolpatcher/
H A DElfImage.cpp74 char foundName[nameLength + 1]; in get_static_image_symbol() local
78 if (debug_next_image_symbol(iterator, foundName, nameLength + 1, in get_static_image_symbol()
84 if (strcmp(foundName, name) == 0 in get_static_image_symbol()
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DDirectory.h24 char* foundName, size_t& _foundNameLength,
H A DDirectory.cpp69 char* foundName, size_t& _foundNameLength,
618 DirEntryTree::LookupNextEntry(const char* name, char* foundName, in LookupNextEntry() argument
740 memcpy(foundName, name, nameLength); in LookupNextEntry()
741 foundName[nameLength] = '\0'; in LookupNextEntry()
745 PRINT(" found entry: \"%s\" -> %" B_PRIu64 "\n", foundName, _blockIndex); in LookupNextEntry()
1603 Directory::LookupNextEntry(const char* name, char* foundName, in LookupNextEntry() argument
1607 return entryTree.LookupNextEntry(name, foundName, _foundNameLength, in LookupNextEntry()
/haiku/src/kits/debug/
H A DImage.cpp43 const char* foundName; in GetSymbol() local
48 while (NextSymbol(iterator, &foundName, &foundNameLen, &foundAddress, in GetSymbol()
51 && strcmp(name, foundName) == 0) { in GetSymbol()