Searched refs:fullSync (Results 1 – 8 of 8) sorted by relevance
/haiku/headers/private/storage/mime/ |
H A D | SupportingApps.h | 36 status_t SetSupportedTypes(const char *app, const BMessage *types, bool fullSync); 37 status_t DeleteSupportedTypes(const char *app, bool fullSync);
|
H A D | Database.h | 86 status_t SetSupportedTypes(const char *type, const BMessage *types, bool fullSync); 118 status_t DeleteSupportedTypes(const char *type, bool fullSync);
|
/haiku/src/kits/storage/mime/ |
H A D | SupportingApps.cpp | 164 SupportingApps::SetSupportedTypes(const char *app, const BMessage *types, bool fullSync) in SetSupportedTypes() argument 205 if (fullSync) { in SetSupportedTypes() 223 SupportingApps::DeleteSupportedTypes(const char *app, bool fullSync) in DeleteSupportedTypes() argument 226 return SetSupportedTypes(app, &types, fullSync); in DeleteSupportedTypes()
|
H A D | Database.cpp | 614 Database::SetSupportedTypes(const char *type, const BMessage *types, bool fullSync) in SetSupportedTypes() argument 646 status = fSupportingApps.SetSupportedTypes(type, types, fullSync); in SetSupportedTypes() 1301 Database::DeleteSupportedTypes(const char *type, bool fullSync) in DeleteSupportedTypes() argument 1311 status = fSupportingApps.DeleteSupportedTypes(type, fullSync); in DeleteSupportedTypes() 1314 if (fullSync) in DeleteSupportedTypes() 1315 fSupportingApps.DeleteSupportedTypes(type, fullSync); in DeleteSupportedTypes()
|
/haiku/src/servers/registrar/ |
H A D | MIMEManager.cpp | 459 bool fullSync = true; in HandleSetParam() local 462 err = message->FindBool("full sync", &fullSync); in HandleSetParam() 464 err = fDatabase.SetSupportedTypes(type, &types, fullSync); in HandleSetParam() 557 bool fullSync; in HandleDeleteParam() local 558 err = message->FindBool("full sync", &fullSync); in HandleDeleteParam() 560 err = fDatabase.DeleteSupportedTypes(type, fullSync); in HandleDeleteParam()
|
/haiku/headers/build/os/storage/ |
H A D | MimeType.h | 149 status_t SetSupportedTypes(const BMessage *types, bool fullSync = true);
|
/haiku/headers/os/storage/ |
H A D | MimeType.h | 171 status_t SetSupportedTypes(const BMessage* types, bool fullSync = true);
|
/haiku/src/kits/storage/ |
H A D | MimeType.cpp | 1266 BMimeType::SetSupportedTypes(const BMessage* types, bool fullSync) in SetSupportedTypes() argument 1285 err = message.AddBool("full sync", fullSync); in SetSupportedTypes()
|