Symbol: SetIconForType
headers/os/storage/AppFileInfo.h
101
status_t SetIconForType(const char* type,
headers/os/storage/AppFileInfo.h
103
status_t SetIconForType(const char* type,
headers/os/storage/AppFileInfo.h
106
status_t SetIconForType(const char* type,
headers/os/storage/AppFileInfo.h
98
status_t SetIconForType(const char* type,
headers/os/storage/MimeType.h
131
status_t SetIconForType(const char* type, const BBitmap* icon,
headers/os/storage/MimeType.h
133
status_t SetIconForType(const char* type, const uint8* data,
headers/private/storage/mime/Database.h
77
status_t SetIconForType(const char* type, const char* fileType,
headers/private/storage/mime/Database.h
79
status_t SetIconForType(const char *type, const char *fileType,
headers/private/storage/mime/Database.h
81
status_t SetIconForType(const char *type, const char *fileType,
src/build/libbe/storage/AppFileInfo.cpp
516
return SetIconForType(NULL, icon, which, updateMimeDB);
src/build/libbe/storage/AppFileInfo.cpp
523
return SetIconForType(NULL, icon, which, true);
src/build/libbe/storage/AppFileInfo.cpp
530
return SetIconForType(NULL, data, size, updateMimeDB);
src/build/libbe/storage/AppFileInfo.cpp
537
return SetIconForType(NULL, data, size, true);
src/build/libbe/storage/AppFileInfo.cpp
871
error = mimeType.SetIconForType(type, icon, which);
src/build/libbe/storage/AppFileInfo.cpp
882
return SetIconForType(type, icon, which, true);
src/build/libbe/storage/AppFileInfo.cpp
923
error = mimeType.SetIconForType(type, data, size);
src/build/libbe/storage/AppFileInfo.cpp
933
return SetIconForType(type, data, size, true);
src/kits/storage/AppFileInfo.cpp
514
return SetIconForType(NULL, icon, which, updateMimeDB);
src/kits/storage/AppFileInfo.cpp
521
return SetIconForType(NULL, icon, which, true);
src/kits/storage/AppFileInfo.cpp
528
return SetIconForType(NULL, data, size, updateMimeDB);
src/kits/storage/AppFileInfo.cpp
535
return SetIconForType(NULL, data, size, true);
src/kits/storage/AppFileInfo.cpp
868
error = mimeType.SetIconForType(type, icon, which);
src/kits/storage/AppFileInfo.cpp
878
return SetIconForType(type, icon, which, true);
src/kits/storage/AppFileInfo.cpp
918
error = mimeType.SetIconForType(type, data, size);
src/kits/storage/AppFileInfo.cpp
927
return SetIconForType(type, data, size, true);
src/kits/storage/MimeType.cpp
460
return SetIconForType(NULL, icon, which);
src/kits/storage/MimeType.cpp
468
return SetIconForType(NULL, data, size);
src/kits/storage/mime/AppMetaMimeCreator.cpp
174
status = fDatabase->SetIconForType(signature, type, data, size);
src/kits/storage/mime/AppMetaMimeCreator.cpp
181
status = fDatabase->SetIconForType(signature, type, &miniIcon,
src/kits/storage/mime/AppMetaMimeCreator.cpp
188
status = fDatabase->SetIconForType(signature, type, &largeIcon,
src/kits/storage/mime/Database.cpp
376
return SetIconForType(type, NULL, data, dataSize, which);
src/kits/storage/mime/Database.cpp
386
return SetIconForType(type, NULL, data, dataSize);
src/kits/storage/mime/Database.cpp
395
return SetIconForType(type, fileType, icon->Bits(),
src/kits/storage/mime/Database.cpp
398
return SetIconForType(type, fileType, NULL, 0, which);
src/kits/storage/mime/MimeInfoUpdater.cpp
39
err = appFileInfoWrite.SetIconForType(type, &icon, iconSize, false);
src/kits/storage/mime/MimeInfoUpdater.cpp
41
err = appFileInfoWrite.SetIconForType(type, NULL, iconSize, false);
src/kits/storage/mime/MimeInfoUpdater.cpp
55
err = appFileInfoWrite.SetIconForType(type, data, size, false);
src/kits/storage/mime/MimeInfoUpdater.cpp
57
err = appFileInfoWrite.SetIconForType(type, NULL, size, false);
src/preferences/filetypes/IconView.cpp
1282
info.SetIconForType(fType.Type(), large, B_LARGE_ICON);
src/preferences/filetypes/IconView.cpp
1284
info.SetIconForType(fType.Type(), mini, B_MINI_ICON);
src/preferences/filetypes/IconView.cpp
1286
info.SetIconForType(fType.Type(), data, size);
src/preferences/filetypes/IconView.cpp
254
status = info.SetIconForType(type, fLarge, B_LARGE_ICON);
src/preferences/filetypes/IconView.cpp
256
status = info.SetIconForType(type, fMini, B_MINI_ICON);
src/preferences/filetypes/IconView.cpp
258
status = info.SetIconForType(type, fData, fSize);
src/servers/registrar/MIMEManager.cpp
416
? fDatabase.SetIconForType(type, fileType, data,
src/servers/registrar/MIMEManager.cpp
418
: fDatabase.SetIconForType(type, fileType, data,
src/tests/kits/storage/AppFileInfoTest.cpp
2371
CHK(appFileInfo.SetIconForType(testType1, fIconM1, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2381
CHK(appFileInfo.SetIconForType(testType1, fIconM2, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2393
CHK(appFileInfo.SetIconForType(testType1, fIconL1, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2404
CHK(appFileInfo.SetIconForType(testType1, fIconL2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2453
CHK(appFileInfo.SetIconForType(testType1, NULL, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2463
CHK(appFileInfo.SetIconForType(testType1, NULL, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2477
CHK(appFileInfo.SetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2480
CHK(appFileInfo.SetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2490
CHK(appFileInfo.SetIconForType(testType1, &icon, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2493
CHK(appFileInfo.SetIconForType(testType1, &icon2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2502
CHK(appFileInfo.SetIconForType(NULL, fIconM1, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2503
CHK(appFileInfo.SetIconForType(NULL, fIconL1, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2540
CHK(appFileInfo.SetIconForType(testType1, fIconM1, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2542
CHK(appFileInfo.SetIconForType(testType1, fIconL1, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2544
CHK(appFileInfo.SetIconForType(testType2, fIconM2, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2546
CHK(appFileInfo.SetIconForType(testType2, fIconL2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2585
CHK(appFileInfo.SetIconForType(testType1, NULL, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2586
CHK(appFileInfo.SetIconForType(testType1, NULL, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2587
CHK(appFileInfo.SetIconForType(testType2, NULL, B_MINI_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2588
CHK(appFileInfo.SetIconForType(testType2, NULL, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
2596
CHK(appFileInfo.SetIconForType(invalidTestType, fIconM1, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2598
CHK(appFileInfo.SetIconForType(invalidTestType, fIconL1, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2619
CHK(appFileInfo.SetIconForType(tooLongTestType, fIconM1, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2621
CHK(appFileInfo.SetIconForType(tooLongTestType, fIconL1, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2635
CHK(appFileInfo.SetIconForType(testType1, fIconM1, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2637
CHK(appFileInfo.SetIconForType(testType1, fIconL1, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2652
CHK(appFileInfo.SetIconForType(testType1, fIconM2, B_MINI_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
2654
CHK(appFileInfo.SetIconForType(testType1, fIconL2, B_LARGE_ICON)
src/tests/kits/storage/AppFileInfoTest.cpp
719
status_t error = info.SetIconForType(value.type.c_str(), &value.mini,
src/tests/kits/storage/AppFileInfoTest.cpp
722
error = info.SetIconForType(value.type.c_str(), &value.large,
src/tests/kits/storage/MimeTypeTest.cpp
1543
CHK(mime.SetIconForType(testTypeInvalid, helper.Bitmap1(), helper.Size()) != B_OK); // R5 == B_BAD_VALUE
src/tests/kits/storage/MimeTypeTest.cpp
1561
CHK(mime.SetIconForType(NULL, helper.Bitmap1(), helper.Size()) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
1570
CHK(mime.SetIconForType(NULL, NULL, helper.Size()) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
3233
CHK(type.SetIconForType("text/plain", iconHelperLarge.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
3235
CHK(type.SetIconForType("text/plain", iconHelperMini.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
3282
CHK(type.SetIconForType("text/plain", iconHelperLarge.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
3284
CHK(type.SetIconForType("text/plain", iconHelperMini.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
3329
CHK(type.SetIconForType("text/plain", iconHelperLarge.Bitmap2(),
src/tests/kits/storage/MimeTypeTest.cpp
3331
CHK(type.SetIconForType("text/plain", NULL,
src/tests/kits/storage/MimeTypeTest.cpp
3333
CHK(type.SetIconForType("text/plain", iconHelperMini.Bitmap2(),
src/tests/kits/storage/MimeTypeTest.cpp
3387
CHK(type.SetIconForType("text/plain", iconHelperLarge.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
3389
CHK(type.SetIconForType("text/plain", iconHelperMini.Bitmap1(),
src/tests/kits/storage/MimeTypeTest.cpp
503
return mime.SetIconForType(fileType.c_str(), icon, size);
src/tests/kits/storage/NodeInfoTest.cpp
1007
CHK(appType2.SetIconForType(testType1, NULL, B_MINI_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
1008
CHK(appType2.SetIconForType(testType1, NULL, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
930
CHK(appType.SetIconForType(testType1, fIconM2, B_MINI_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
931
CHK(appType.SetIconForType(testType1, fIconL2, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
940
CHK(appType2.SetIconForType(testType1, fIconM4, B_MINI_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
941
CHK(appType2.SetIconForType(testType1, fIconL4, B_LARGE_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
977
CHK(appType.SetIconForType(testType1, NULL, B_MINI_ICON) == B_OK);
src/tests/kits/storage/NodeInfoTest.cpp
978
CHK(appType.SetIconForType(testType1, NULL, B_LARGE_ICON) == B_OK);