Symbol: GetIconForType
headers/os/storage/AppFileInfo.h
94
status_t GetIconForType(const char* type, BBitmap* icon,
headers/os/storage/AppFileInfo.h
96
status_t GetIconForType(const char* type, uint8** data,
headers/os/storage/MimeType.h
127
status_t GetIconForType(const char* type, BBitmap* icon,
headers/os/storage/MimeType.h
129
status_t GetIconForType(const char* type, uint8** _data,
headers/private/storage/mime/DatabaseLocation.h
84
status_t GetIconForType(const char* type,
headers/private/storage/mime/DatabaseLocation.h
87
status_t GetIconForType(const char* type,
src/build/libbe/storage/AppFileInfo.cpp
502
return GetIconForType(NULL, icon, which);
src/build/libbe/storage/AppFileInfo.cpp
509
return GetIconForType(NULL, data, size);
src/kits/storage/AppFileInfo.cpp
500
return GetIconForType(NULL, icon, which);
src/kits/storage/AppFileInfo.cpp
507
return GetIconForType(NULL, data, size);
src/kits/storage/MimeType.cpp
827
err = default_database_location()->GetIconForType(Type(), type,
src/kits/storage/MimeType.cpp
853
return default_database_location()->GetIconForType(Type(), type, *_data,
src/kits/storage/NodeInfo.cpp
523
success = type.GetIconForType(mimeString, icon, which) == B_OK;
src/kits/storage/NodeInfo.cpp
536
success = type.GetIconForType(mimeString, icon, which) == B_OK;
src/kits/storage/NodeInfo.cpp
552
success = type.GetIconForType(superType.Type(), icon,
src/kits/storage/mime/AppMetaMimeCreator.cpp
172
&& appInfo.GetIconForType(type, &data, &size) == B_OK) {
src/kits/storage/mime/AppMetaMimeCreator.cpp
179
&& appInfo.GetIconForType(type, &miniIcon, B_MINI_ICON) == B_OK) {
src/kits/storage/mime/AppMetaMimeCreator.cpp
186
&& appInfo.GetIconForType(type, &largeIcon, B_LARGE_ICON) == B_OK) {
src/kits/storage/mime/DatabaseLocation.cpp
506
return GetIconForType(type, NULL, _icon, size);
src/kits/storage/mime/DatabaseLocation.cpp
522
return GetIconForType(type, NULL, _data, _size);
src/kits/storage/mime/MimeInfoUpdater.cpp
37
status_t err = appFileInfoRead.GetIconForType(type, &icon, iconSize);
src/kits/storage/mime/MimeInfoUpdater.cpp
53
status_t err = appFileInfoRead.GetIconForType(type, &data, &size);
src/kits/tracker/IconCache.cpp
377
if (preferredAppType.GetIconForType(signature.String(),
src/kits/tracker/Model.cpp
1565
err = preferredAppType.GetIconForType(MimeType(), &bitmap, size);
src/kits/tracker/Model.cpp
1592
err = preferredAppType.GetIconForType(MimeType(), &bitmap, size);
src/preferences/filetypes/IconView.cpp
116
if (preferredApp.GetIconForType(type.Type(), &bitmap, size) == B_OK)
src/preferences/filetypes/IconView.cpp
134
if (preferredApp.GetIconForType(superType.Type(),
src/preferences/filetypes/IconView.cpp
189
if (info.GetIconForType(type, &data, &size) == B_OK) {
src/preferences/filetypes/IconView.cpp
196
if (icon && info.GetIconForType(type, icon, B_LARGE_ICON) == B_OK)
src/preferences/filetypes/IconView.cpp
202
if (icon && info.GetIconForType(type, icon, B_MINI_ICON) == B_OK)
src/preferences/filetypes/IconView.cpp
63
if (preferredApp.GetIconForType(type.Type(), &data, &size) == B_OK)
src/preferences/filetypes/IconView.cpp
81
if (preferredApp.GetIconForType(superType.Type(),
src/tests/kits/storage/AppFileInfoTest.cpp
2324
CHK(appFileInfo.GetIconForType(testType1, NULL, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2326
CHK(appFileInfo.GetIconForType(testType1, NULL, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2334
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2337
CHK(appFileInfo.GetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2347
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2350
CHK(appFileInfo.GetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2360
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2375
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2385
CHK(appFileInfo.GetIconForType(testType1, &icon2, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2397
CHK(appFileInfo.GetIconForType(testType1, &icon3, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2408
CHK(appFileInfo.GetIconForType(testType1, &icon4, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2424
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2433
CHK(appFileInfo.GetIconForType(testType1, &icon3, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2456
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2466
CHK(appFileInfo.GetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2520
CHK(appFileInfo.GetIconForType(NULL, &icon3, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2527
CHK(appFileInfo.GetIconForType(NULL, &icon4, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2551
CHK(appFileInfo.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2559
CHK(appFileInfo.GetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2568
CHK(appFileInfo.GetIconForType(testType2, &icon3, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2577
CHK(appFileInfo.GetIconForType(testType2, &icon4, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2602
CHK(appFileInfo.GetIconForType(invalidTestType, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2608
CHK(appFileInfo.GetIconForType(invalidTestType, &icon3, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2643
CHK(mimeType.GetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2648
CHK(mimeType.GetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2658
CHK(mimeType.GetIconForType(testType1, &icon3, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2663
CHK(mimeType.GetIconForType(testType1, &icon4, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
734
status_t error = info.GetIconForType(value.type.c_str(), &value.mini,
src/tests/kits/storage/AppFileInfoTest.cpp
737
error = info.GetIconForType(value.type.c_str(), &value.large,
src/tests/kits/storage/MimeTypeTest.cpp
1544
CHK(mime.GetIconForType(testTypeInvalid, bmp, helper.Size()) != B_OK); // R5 == B_BAD_VALUE
src/tests/kits/storage/MimeTypeTest.cpp
1562
CHK(mime.GetIconForType(NULL, bmp, helper.Size()) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
1571
CHK(mime.GetIconForType(NULL, bmp, helper.Size()) != B_OK); // B_ENTRY_NOT_FOUND
src/tests/kits/storage/MimeTypeTest.cpp
500
return mime.GetIconForType(fileType.c_str(), icon, size);