Lines Matching defs:mimeType

872 	\param mimeType The MIME type for which an application shall be found.
877 - \c B_BAD_VALUE: \c NULL \a mimeType or \a app.
889 BRoster::FindApp(const char* mimeType, entry_ref* app) const
891 if (mimeType == NULL || app == NULL)
894 return _ResolveApp(mimeType, NULL, app, NULL, NULL, NULL);
920 - \c B_BAD_VALUE: \c NULL \a mimeType or \a app.
1145 \param mimeType MIME type for which the application shall be launched.
1152 - \c B_BAD_VALUE: \c NULL \a mimeType
1168 BRoster::Launch(const char* mimeType, BMessage* initialMessage,
1171 if (mimeType == NULL)
1178 return _LaunchApp(mimeType, NULL, &messageList, 0, NULL, appTeam);
1192 \param mimeType MIME type for which the application shall be launched.
1199 - \c B_BAD_VALUE: \c NULL \a mimeType
1211 BRoster::Launch(const char* mimeType, BList* messageList,
1214 if (mimeType == NULL)
1217 return _LaunchApp(mimeType, NULL, messageList, 0, NULL, appTeam);
1231 \param mimeType MIME type for which the application shall be launched.
1239 - \c B_BAD_VALUE: \c NULL \a mimeType
1251 BRoster::Launch(const char* mimeType, int argc, char** args,
1254 if (mimeType == NULL)
1257 return _LaunchApp(mimeType, NULL, NULL, argc, args, appTeam);
2104 At least one of \a mimeType or \a ref must not be \c NULL. If \a mimeType
2128 \param mimeType MIME type for which the application shall be launched.
2141 - \c B_BAD_VALUE: \c NULL \a mimeType and \a ref.
2153 BRoster::_LaunchApp(const char* mimeType, const entry_ref* ref,
2165 if (mimeType == NULL && ref == NULL)
2188 error = _ResolveApp(mimeType, docRef, &appRef, signature,
2590 \param mimeType The MIME type for which an application shall be found.
2599 - \c B_BAD_VALUE: \c NULL \a mimeType, \a appMeta, \a appRef or \a appFile.
2603 BRoster::_TranslateType(const char* mimeType, BMimeType* appMeta,
2606 if (mimeType == NULL || appMeta == NULL || appRef == NULL
2607 || appFile == NULL || strlen(mimeType) >= B_MIME_TYPE_LENGTH)
2612 status_t error = type.SetTo(mimeType);
2635 strlcpy(primarySignature, mimeType, sizeof(primarySignature));
2773 \param mimeType A pointer to a pre-allocated char buffer of at least size
2778 - \c B_BAD_VALUE: \c NULL \a file, \a nodeInfo or \a mimeType.
2783 char* mimeType) const
2786 if (nodeInfo->GetType(mimeType) == B_OK)
2794 || nodeInfo->GetType(mimeType) != B_OK) {
2803 strlcpy(mimeType, type.Type(), B_MIME_TYPE_LENGTH);