Searched refs:fullSync (Results 1 - 8 of 8) sorted by relevance

/haiku/headers/private/storage/mime/
H A DSupportingApps.h36 status_t SetSupportedTypes(const char *app, const BMessage *types, bool fullSync);
37 status_t DeleteSupportedTypes(const char *app, bool fullSync);
H A DDatabase.h86 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 DSupportingApps.cpp140 If \a fullSync is true, all types previously but no longer supported
144 If \a fullSync is false, said previously supported types will be
146 the next time SetSupportedTypes() is called with a \c true \a fullSync
151 types with consecutive \c false \a fullSync parameters.
156 \param fullSync If \c true, \c app is removed as a supporting application
164 SupportingApps::SetSupportedTypes(const char *app, const BMessage *types, bool fullSync) argument
205 if (fullSync) {
220 \param fullSync See SupportingApps::SetSupportedTypes()
223 SupportingApps::DeleteSupportedTypes(const char *app, bool fullSync) argument
226 return SetSupportedTypes(app, &types, fullSync);
[all...]
H A DDatabase.cpp614 Database::SetSupportedTypes(const char *type, const BMessage *types, bool fullSync) argument
646 status = fSupportingApps.SetSupportedTypes(type, types, fullSync);
1287 If \c fullSync is \c true, the given type is removed from the internal list
1288 of supporting applictions for each previously supported type. If \c fullSync
1290 DeleteSupportedTypes() is called with a \c true \c fullSync paramter, or
1293 \param fullSync Whether or not to remove the type as a supporting app for
1301 Database::DeleteSupportedTypes(const char *type, bool fullSync) argument
1305 // Update the supporting apps database. If fullSync is specified,
1308 // calls to {Set,Delete}SupportedTypes() with fullSync == false.
1311 status = fSupportingApps.DeleteSupportedTypes(type, fullSync);
[all...]
/haiku/src/servers/registrar/
H A DMIMEManager.cpp459 bool fullSync = true; local
462 err = message->FindBool("full sync", &fullSync);
464 err = fDatabase.SetSupportedTypes(type, &types, fullSync);
557 bool fullSync; local
558 err = message->FindBool("full sync", &fullSync);
560 err = fDatabase.DeleteSupportedTypes(type, fullSync);
/haiku/headers/build/os/storage/
H A DMimeType.h149 status_t SetSupportedTypes(const BMessage *types, bool fullSync = true);
/haiku/headers/os/storage/
H A DMimeType.h171 status_t SetSupportedTypes(const BMessage* types, bool fullSync = true);
/haiku/src/kits/storage/
H A DMimeType.cpp1247 \a fullSync specifies whether or not any types that are no longer
1252 If \a fullSync is \c false, this application will not be removed from the
1255 with a \c true \a fullSync parameter, the next call to BMimeType::Delete(),
1260 \param fullSync \c true to also synchronize the previously supported
1266 BMimeType::SetSupportedTypes(const BMessage* types, bool fullSync) argument
1285 err = message.AddBool("full sync", fullSync);

Completed in 72 milliseconds