Symbol: SetSupportedTypes
headers/build/os/storage/MimeType.h
149
status_t SetSupportedTypes(const BMessage *types, bool fullSync = true);
headers/os/storage/AppFileInfo.h
71
status_t SetSupportedTypes(const BMessage* types,
headers/os/storage/AppFileInfo.h
73
status_t SetSupportedTypes(const BMessage* types,
headers/os/storage/AppFileInfo.h
75
status_t SetSupportedTypes(const BMessage* types);
headers/os/storage/MimeType.h
171
status_t SetSupportedTypes(const BMessage* types, bool fullSync = true);
headers/private/storage/mime/Database.h
86
status_t SetSupportedTypes(const char *type, const BMessage *types, bool fullSync);
headers/private/storage/mime/SupportingApps.h
36
status_t SetSupportedTypes(const char *app, const BMessage *types, bool fullSync);
src/build/libbe/storage/AppFileInfo.cpp
428
error = mimeType.SetSupportedTypes(types, syncAll);
src/build/libbe/storage/AppFileInfo.cpp
438
return SetSupportedTypes(types, true, syncAll);
src/build/libbe/storage/AppFileInfo.cpp
445
return SetSupportedTypes(types, true, false);
src/kits/storage/AppFileInfo.cpp
427
error = mimeType.SetSupportedTypes(types, syncAll);
src/kits/storage/AppFileInfo.cpp
436
return SetSupportedTypes(types, true, syncAll);
src/kits/storage/AppFileInfo.cpp
443
return SetSupportedTypes(types, true, false);
src/kits/storage/mime/AppMetaMimeCreator.cpp
162
status = fDatabase->SetSupportedTypes(signature, &supportedTypes, true);
src/kits/storage/mime/Database.cpp
646
status = fSupportingApps.SetSupportedTypes(type, types, fullSync);
src/kits/storage/mime/MimeInfoUpdater.cpp
180
err = appFileInfoWrite.SetSupportedTypes(&supportedTypes, false,
src/kits/storage/mime/MimeInfoUpdater.cpp
184
err = appFileInfoWrite.SetSupportedTypes(NULL, false, false);
src/kits/storage/mime/SupportingApps.cpp
226
return SetSupportedTypes(app, &types, fullSync);
src/preferences/filetypes/ApplicationTypeWindow.cpp
754
status = info.SetSupportedTypes(&supportedTypes);
src/servers/registrar/MIMEManager.cpp
464
err = fDatabase.SetSupportedTypes(type, &types, fullSync);
src/tests/kits/storage/AppFileInfoTest.cpp
1472
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1489
CHK(appFileInfo.SetSupportedTypes(&testTypes2) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1541
CHK(appFileInfo.SetSupportedTypes(&types) == B_NO_INIT);
src/tests/kits/storage/AppFileInfoTest.cpp
1550
CHK(appFileInfo.SetSupportedTypes(NULL) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1568
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1569
CHK(appFileInfo.SetSupportedTypes(NULL, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1602
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1607
CHK(appFileInfo.SetSupportedTypes(&testTypes2) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1631
CHK(appFileInfo.SetSupportedTypes(&testTypes1, false) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1636
CHK(appFileInfo.SetSupportedTypes(&testTypes2, false) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1660
CHK(appFileInfo.SetSupportedTypes(&testTypes1, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1665
CHK(appFileInfo.SetSupportedTypes(&testTypes2, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1684
CHK(appFileInfo.SetSupportedTypes(NULL, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1685
CHK(appFileInfo.SetSupportedTypes(&invalidTestTypes, false)
src/tests/kits/storage/AppFileInfoTest.cpp
1722
CHK(appFileInfo.SetSupportedTypes(&types) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1726
CHK(appFileInfo.SetSupportedTypes(&noTypes, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1748
CHK(appFileInfo.SetSupportedTypes(&testTypes1, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1765
CHK(appFileInfo.SetSupportedTypes(&testTypes2, true) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1810
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_ENTRY_NOT_FOUND);
src/tests/kits/storage/AppFileInfoTest.cpp
1812
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1833
CHK(appFileInfo.SetSupportedTypes(&testTypes2) == B_ENTRY_NOT_FOUND);
src/tests/kits/storage/AppFileInfoTest.cpp
1835
CHK(appFileInfo.SetSupportedTypes(&testTypes2) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
1877
CHK(appFileInfo.SetSupportedTypes(&testTypes1, true)
src/tests/kits/storage/AppFileInfoTest.cpp
1894
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_ENTRY_NOT_FOUND);
src/tests/kits/storage/AppFileInfoTest.cpp
1924
CHK(appFileInfo.SetSupportedTypes(&testTypes1) == B_OK);
src/tests/kits/storage/AppFileInfoTest.cpp
529
return info.SetSupportedTypes(&value.types, false);
src/tests/kits/storage/MimeTypeTest.cpp
2368
CHK(mime.SetSupportedTypes(&msg, true) != B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2369
CHK(mime.SetSupportedTypes(&msg, false) != B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2386
CHK(mime.SetSupportedTypes(&msg3, true) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2419
CHK(mime.SetSupportedTypes(&msg3, true) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2436
CHK(mime.SetSupportedTypes(&msg2, false) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2454
CHK(mime.SetSupportedTypes(&msg1a, false) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2473
CHK(mime.SetSupportedTypes(&msg1b, false) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2491
CHK(mime.SetSupportedTypes(&msg1b, true) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2507
CHK(mime.SetSupportedTypes(NULL, false) == B_OK);
src/tests/kits/storage/MimeTypeTest.cpp
2517
CHK(mime.SetSupportedTypes(NULL, true) == B_ENTRY_NOT_FOUND);