Symbol: FindResource
headers/os/storage/Resources.h
104
void* FindResource(type_code type, int32 id,
headers/os/storage/Resources.h
106
void* FindResource(type_code type, const char* name,
src/apps/deskbar/BarApp.cpp
1137
data = (uint8*)AppResSet()->FindResource(B_VECTOR_ICON_TYPE, id, &size);
src/apps/deskbar/BarMenuBar.cpp
122
const void* data = AppResSet()->FindResource(B_VECTOR_ICON_TYPE,
src/apps/deskbar/BarMenuBar.cpp
340
fTeamIconData = (const uint8*)AppResSet()->FindResource(
src/apps/deskbar/ResourceSet.h
87
const void* FindResource(type_code type, int32 id, size_t* outSize);
src/apps/deskbar/ResourceSet.h
88
const void* FindResource(type_code type, const char* name, size_t* outSize);
src/tests/kits/storage/ResourcesTest.cpp
604
= resources.FindResource(info.type, info.id, &lengthFound1);
src/tests/kits/storage/ResourcesTest.cpp
606
= resources.FindResource(info.type, info.name, &lengthFound2);
src/tests/kits/storage/ResourcesTest.cpp
646
= resources.FindResource(info.type, info.id, &lengthFound1);
src/tests/kits/storage/ResourcesTest.cpp
648
= resources.FindResource(info.type, info.name, &lengthFound2);
src/tests/kits/storage/ResourcesTest.cpp
693
= resources.FindResource(info.type, info.id, &lengthFound1);
src/tests/kits/storage/ResourcesTest.cpp
695
= resources.FindResource(info.type, info.name, &lengthFound2);
src/tests/kits/storage/ResourcesTest.cpp
963
= resources.FindResource(info.type, info.id, NULL);
src/tests/kits/storage/ResourcesTest.cpp
965
= resources.FindResource(info.type, info.name, NULL);