Lines Matching refs:hs_error_t

52 hs_error_t HS_CDECL hs_free_database(hs_database_t *db) {  in hs_free_database()
62 hs_error_t HS_CDECL hs_serialize_database(const hs_database_t *db, char **bytes, in hs_serialize_database()
72 hs_error_t ret = validDatabase(db); in hs_serialize_database()
115 hs_error_t db_check_platform(const u64a p) { in db_check_platform()
130 hs_error_t db_decode_header(const char **bytes, const size_t length, in db_decode_header()
178 hs_error_t db_check_crc(const hs_database_t *db) { in db_check_crc()
200 hs_error_t HS_CDECL hs_deserialize_database_at(const char *bytes, in hs_deserialize_database_at()
214 hs_error_t ret = db_decode_header(&bytes, length, &header); in hs_deserialize_database_at()
243 hs_error_t HS_CDECL hs_deserialize_database(const char *bytes, in hs_deserialize_database()
254 hs_error_t ret = db_decode_header(&bytes, length, &header); in hs_deserialize_database()
293 hs_error_t HS_CDECL hs_database_size(const hs_database_t *db, size_t *size) { in hs_database_size()
298 hs_error_t ret = validDatabase(db); in hs_database_size()
308 hs_error_t HS_CDECL hs_serialized_database_size(const char *bytes, in hs_serialized_database_size()
313 hs_error_t ret = db_decode_header(&bytes, length, &header); in hs_serialized_database_size()
326 hs_error_t dbIsValid(const hs_database_t *db) { in dbIsValid()
347 hs_error_t rv = db_check_crc(db); in dbIsValid()
365 hs_error_t print_database_string(char **s, u32 version, const platform_t plat, in print_database_string()
397 hs_error_t ret = hs_check_alloc(buf); in print_database_string()
426 hs_error_t HS_CDECL hs_serialized_database_info(const char *bytes, in hs_serialized_database_info()
435 hs_error_t ret = db_decode_header(&bytes, length, &header); in hs_serialized_database_info()
446 hs_error_t HS_CDECL hs_database_info(const hs_database_t *db, char **info) { in hs_database_info()