Lines Matching refs:mimeType

778 BRoster::FindApp(const char* mimeType, entry_ref* app) const
780 if (mimeType == NULL || app == NULL)
783 return _ResolveApp(mimeType, NULL, app, NULL, NULL, NULL);
916 BRoster::Launch(const char* mimeType, BMessage* initialMessage,
919 if (mimeType == NULL)
926 return _LaunchApp(mimeType, NULL, &messageList, 0, NULL,
932 BRoster::Launch(const char* mimeType, BList* messageList,
935 if (mimeType == NULL)
938 return _LaunchApp(mimeType, NULL, messageList, 0, NULL,
944 BRoster::Launch(const char* mimeType, int argc, const char* const* args,
947 if (mimeType == NULL)
950 return _LaunchApp(mimeType, NULL, NULL, argc, args, (const char**)environ,
1008 Launch__C7BRosterPCciPPcPl(BRoster* roster, const char* mimeType,
1011 return roster->BRoster::Launch(mimeType, argc, args, _appTeam);
1820 At least one of \a mimeType or \a ref must not be \c NULL. If \a mimeType
1848 \param mimeType MIME type for which the application shall be launched.
1866 \retval B_BAD_VALUE \c NULL \a mimeType
1878 BRoster::_LaunchApp(const char* mimeType, const entry_ref* ref,
1891 if (mimeType == NULL && ref == NULL)
1918 error = _ResolveApp(mimeType, docRef, &appRef, signature,
2352 \param mimeType The MIME type for which an application shall be found.
2362 \retval B_BAD_VALUE \c NULL \a mimeType, \a appMeta, \a appRef or
2368 BRoster::_TranslateType(const char* mimeType, BMimeType* appMeta,
2371 if (mimeType == NULL || appMeta == NULL || appRef == NULL
2372 || appFile == NULL || strlen(mimeType) >= B_MIME_TYPE_LENGTH) {
2378 status_t error = type.SetTo(mimeType);
2401 strlcpy(primarySignature, mimeType, sizeof(primarySignature));
2544 \param mimeType A pointer to a pre-allocated char buffer of at least size
2550 \retval B_BAD_VALUE \c NULL \a file, \a nodeInfo or \a mimeType.
2554 char* mimeType) const
2557 if (nodeInfo->GetType(mimeType) == B_OK)
2568 || nodeInfo->GetType(mimeType) != B_OK) {
2577 strlcpy(mimeType, type.Type(), B_MIME_TYPE_LENGTH);