Lines Matching refs:key_string
1570 heim_string_t key_string; in json_db_copy_value() local
1608 key_string = heim_string_create_with_bytes(key_data->data, in json_db_copy_value()
1610 if (key_string == NULL) { in json_db_copy_value()
1615 result = heim_path_copy(jsondb->dict, error, table, key_string, NULL); in json_db_copy_value()
1616 heim_release(key_string); in json_db_copy_value()
1625 heim_string_t key_string; in json_db_set_value() local
1638 key_string = heim_string_create_with_bytes(key_data->data, in json_db_set_value()
1640 if (key_string == NULL) in json_db_set_value()
1646 ret = heim_path_create(jsondb->dict, 29, value, error, table, key_string, NULL); in json_db_set_value()
1647 heim_release(key_string); in json_db_set_value()
1656 heim_string_t key_string; in json_db_del_key() local
1668 key_string = heim_string_create_with_bytes(key_data->data, in json_db_del_key()
1670 if (key_string == NULL) in json_db_del_key()
1676 heim_path_delete(jsondb->dict, error, table, key_string, NULL); in json_db_del_key()
1677 heim_release(key_string); in json_db_del_key()
1689 const char *key_string; in json_db_iter_f() local
1692 key_string = heim_string_get_utf8((heim_string_t)key); in json_db_iter_f()
1693 key_data = heim_data_ref_create(key_string, strlen(key_string), NULL); in json_db_iter_f()