Lines Matching defs:OH_UdsFileUri

80 typedef struct OH_UdsFileUri OH_UdsFileUri;

503 * @brief Creation a pointer to the instance of the {@link OH_UdsFileUri}.
505 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsFileUri}
507 * @see OH_UdsFileUri
510 OH_UdsFileUri* OH_UdsFileUri_Create();
513 * @brief Destroy a pointer that points to the {@link OH_UdsFileUri} instance.
515 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
516 * @see OH_UdsFileUri
519 void OH_UdsFileUri_Destroy(OH_UdsFileUri* pThis);
522 * @brief Get type id from the {@link OH_UdsFileUri}.
524 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
526 * @see OH_UdsFileUri
529 const char* OH_UdsFileUri_GetType(OH_UdsFileUri* pThis);
532 * @brief Get file uri from the {@link OH_UdsFileUri}.
534 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
536 * @see OH_UdsFileUri
539 const char* OH_UdsFileUri_GetFileUri(OH_UdsFileUri* pThis);
542 * @brief Get file type from the {@link OH_UdsFileUri}.
544 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
546 * @see OH_UdsFileUri
549 const char* OH_UdsFileUri_GetFileType(OH_UdsFileUri* pThis);
552 * @brief Set file uri to the {@link OH_UdsFileUri}.
554 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
559 * @see OH_UdsFileUri Udmf_ErrCode
562 int OH_UdsFileUri_SetFileUri(OH_UdsFileUri* pThis, const char* fileUri);
565 * @brief Set file type to the {@link OH_UdsFileUri}.
567 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
572 * @see OH_UdsFileUri Udmf_ErrCode
575 int OH_UdsFileUri_SetFileType(OH_UdsFileUri* pThis, const char* fileType);