Lines Matching defs:OH_UdsFileUri

83 typedef struct OH_UdsFileUri OH_UdsFileUri;
492 * @brief Creation a pointer to the instance of the {@link OH_UdsFileUri}.
494 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsFileUri}
496 * @see OH_UdsFileUri
499 OH_UdsFileUri* OH_UdsFileUri_Create();
502 * @brief Destroy a pointer that points to the {@link OH_UdsFileUri} instance.
504 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
505 * @see OH_UdsFileUri
508 void OH_UdsFileUri_Destroy(OH_UdsFileUri* pThis);
511 * @brief Get type id from the {@link OH_UdsFileUri}.
513 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
515 * @see OH_UdsFileUri
518 const char* OH_UdsFileUri_GetType(OH_UdsFileUri* pThis);
521 * @brief Get file uri from the {@link OH_UdsFileUri}.
523 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
525 * @see OH_UdsFileUri
528 const char* OH_UdsFileUri_GetFileUri(OH_UdsFileUri* pThis);
531 * @brief Get file type from the {@link OH_UdsFileUri}.
533 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
535 * @see OH_UdsFileUri
538 const char* OH_UdsFileUri_GetFileType(OH_UdsFileUri* pThis);
541 * @brief Set file uri to the {@link OH_UdsFileUri}.
543 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
548 * @see OH_UdsFileUri Udmf_ErrCode
551 int OH_UdsFileUri_SetFileUri(OH_UdsFileUri* pThis, const char* fileUri);
554 * @brief Set file type to the {@link OH_UdsFileUri}.
556 * @param pThis Represents a pointer to an instance of {@link OH_UdsFileUri}.
561 * @see OH_UdsFileUri Udmf_ErrCode
564 int OH_UdsFileUri_SetFileType(OH_UdsFileUri* pThis, const char* fileType);