Searched refs:BINN_BLOB (Results 1 – 4 of 4) sorted by relevance
/third_party/iowow/src/json/tests/ |
D | jbl_test_binn1.c | 446 CU_ASSERT(binn_list_add(list, BINN_BLOB, NULL, -1) == FALSE); in test1() 447 CU_ASSERT(binn_list_add(list, BINN_BLOB, NULL, 10) == FALSE); in test1() 448 CU_ASSERT(binn_map_set(map, 5501, BINN_BLOB, NULL, -1) == FALSE); in test1() 449 CU_ASSERT(binn_map_set(map, 5501, BINN_BLOB, NULL, 10) == FALSE); in test1() 450 CU_ASSERT(binn_object_set(obj, "test", BINN_BLOB, NULL, -1) == FALSE); in test1() 451 CU_ASSERT(binn_object_set(obj, "test", BINN_BLOB, NULL, 10) == FALSE); in test1() 454 CU_ASSERT(binn_list_add(list, BINN_BLOB, &i, -1) == FALSE); in test1() 455 CU_ASSERT(binn_list_add(list, BINN_BLOB, &i, -15) == FALSE); in test1() 456 CU_ASSERT(binn_map_set(map, 5501, BINN_BLOB, &i, -1) == FALSE); in test1() 457 CU_ASSERT(binn_map_set(map, 5501, BINN_BLOB, &i, -15) == FALSE); in test1() [all …]
|
D | jbl_test_binn2.c | 1446 CU_ASSERT(value->type == BINN_BLOB); in test_value_conversion() 1456 CU_ASSERT(value->type == BINN_BLOB); in test_value_conversion() 1467 CU_ASSERT(value->type == BINN_BLOB); in test_value_conversion() 2036 CU_ASSERT(value.type == BINN_BLOB); in test_binn_iter() 2147 CU_ASSERT(value.type == BINN_BLOB); in test_binn_iter() 2254 CU_ASSERT(value.type == BINN_BLOB); in test_binn_iter()
|
/third_party/iowow/src/json/ |
D | iwbinn.h | 146 #define BINN_BLOB 0xC0 // (BLOB) Raw Blob macro 365 return binn_value(BINN_BLOB, ptr, size, freefn); in binn_blob() 658 return binn_list_add(list, BINN_BLOB, ptr, size); in binn_list_add_blob() 732 return binn_map_set(map, id, BINN_BLOB, ptr, size); in binn_map_set_blob() 806 return binn_object_set(obj, key, BINN_BLOB, ptr, size); in binn_object_set_blob() 882 return binn_list_get(list, pos, BINN_BLOB, pvalue, psize); in binn_list_get_blob() 948 return binn_map_get(map, id, BINN_BLOB, pvalue, psize); in binn_map_get_blob() 1017 return binn_object_get(obj, key, BINN_BLOB, pvalue, psize); in binn_object_get_blob()
|
D | iwbinn.c | 1928 case BINN_BLOB: in GetWriteConvertedData() 2007 case BINN_BLOB: in type_family() 2534 binn_list_get(list, pos, BINN_BLOB, &value, psize); in binn_list_blob() 2634 binn_map_get(map, id, BINN_BLOB, &value, psize); in binn_map_blob() 2734 binn_object_get(obj, key, BINN_BLOB, &value, psize); in binn_object_blob() 2833 item->type = BINN_BLOB; in binn_set_blob()
|