UPDATE_CONTROL_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
UPDATE_CONTROL_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
UPDATE_CONTROL_ERROR_FILE_NO_SPACE_ON_DEVICE = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE, /**< No space left on device */
- UPDATE_CONTROL_ERROR_KEY_NOT_FOUND = TIZEN_ERROR_KEY_NOT_AVAILABLE, /**< Specified key is not found */
+ UPDATE_CONTROL_ERROR_KEY_NOT_FOUND = TIZEN_ERROR_KEY_NOT_AVAILABLE, /**< Specified key is not available */
UPDATE_CONTROL_ERROR_KEY_REJECTED = TIZEN_ERROR_KEY_REJECTED, /**< Key is not available */
UPDATE_CONTROL_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED, /**< Not supported */
UPDATE_CONTROL_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permission denied */
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_OUT_OF_MEMORY Out of memory
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @see update_control_deinitialize()
*/
int update_control_initialize(void);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_OUT_OF_MEMORY Out of memory
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @see update_control_initialize()
*/
int update_control_deinitialize(void);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_CONNECTION_REFUSED Connection refused
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_check_new_version(void);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_FILE_NO_SPACE_ON_DEVICE No space left on device
* @retval #UPDATE_CONTROL_ERROR_OUT_OF_MEMORY Out of memory
* @retval #UPDATE_CONTROL_ERROR_CONNECTION_REFUSED Connection refused
* @retval #UPDATE_CONTROL_ERROR_INVALID_URI Invalid URI
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_download_package(void);
* @return @c 0 if RO update and finish were triggered successfully (doesn't guarantee upgrade script COMPLETED successfully),
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_PERMISSION_DENIED Permission denied
* @retval #UPDATE_CONTROL_ERROR_TIMED_OUT Time out
* @retval #UPDATE_CONTROL_ERROR_INVALID_PACKAGE Invalid package
* @retval #UPDATE_CONTROL_ERROR_PACKAGE_NOT_SUPPORTED Package type not supported
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_do_update(void);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
- * @retval #UPDATE_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_PERMISSION_DENIED Permission denied
+ * @retval #UPDATE_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_make_reservation(struct tm *reservation_time);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_PERMISSION_DENIED Permission denied
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_cancel_reservation(void);
* @return @c 0 on success,
* otherwise a negative error value
* @retval #UPDATE_CONTROL_ERROR_NONE Successful
+ * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #UPDATE_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #UPDATE_CONTROL_ERROR_OUT_OF_MEMORY Out of memory
* @retval #UPDATE_CONTROL_ERROR_KEY_NOT_FOUND Specified property not found
* @retval #UPDATE_CONTROL_ERROR_KEY_REJECTED Specified property not available
* @retval #UPDATE_CONTROL_ERROR_SYSTEM_ERROR System error
* @retval #UPDATE_CONTROL_ERROR_INVALID_OPERATION Function not implemented
- * @retval #UPDATE_CONTROL_ERROR_NOT_SUPPORTED Not supported
*/
int update_control_get_property(update_control_property_e property, void **value);