/src/lib/libc/uuid/ |
uuid_is_nil.c | 47 * uuid_is_nil() - return whether the UUID is a nil UUID. 54 static const uuid_t nil = { .time_low = 0 }; local in function:__weak_alias 62 return (memcmp(u, &nil, sizeof(uuid_t)) == 0 ? 1 : 0);
|
uuid_to_string.c | 55 static const uuid_t nil = { .time_low = 0 }; local in function:uuid_to_string 65 u = &nil;
|
/src/tests/lib/libbluetooth/ |
t_sdp_match.c | 48 0x00, // nil 59 sdp_data_t nil; local in function:ATF_TC_BODY 69 ATF_REQUIRE(sdp_get_data(&test, &nil)); /* (skip) */ 70 ATF_CHECK_EQ(sdp_data_type(&nil), SDP_DATA_NIL);
|
t_sdp_get.c | 145 0x00, // nil 177 sdp_data_t nil; local in function:ATF_TC_BODY 191 ATF_REQUIRE(sdp_get_data(&test, &nil)); /* (skip) */ 192 ATF_CHECK_EQ(sdp_data_type(&nil), SDP_DATA_NIL); 212 0x00, // nil 216 sdp_data_t nil; local in function:ATF_TC_BODY 227 ATF_REQUIRE(sdp_get_data(&test, &nil)); /* (skip) */ 228 ATF_CHECK_EQ(sdp_data_type(&nil), SDP_DATA_NIL); 251 0x00, // nil 279 sdp_data_t nil; local in function:ATF_TC_BODY 389 sdp_data_t nil; local in function:ATF_TC_BODY 559 sdp_data_t nil; local in function:ATF_TC_BODY 604 sdp_data_t nil; local in function:ATF_TC_BODY [all...] |
/src/sys/arch/sparc/sparc/ |
db_machdep.c | 57 static long nil; variable in typeref:typename:long 65 { "g0", &nil, FCN_NULL, NULL, },
|
/src/sys/arch/sparc64/sparc64/ |
db_machdep.c | 148 static uint64_t nil; variable in typeref:typename:uint64_t 156 { "g0", (void *)&nil, FCN_NULL, 0 },
|
/src/sys/arch/arm/arm32/ |
db_machdep.c | 62 static long nil; variable in typeref:typename:long 106 { "und_sp", &nil, db_access_und_sp, NULL }, 107 { "abt_sp", &nil, db_access_abt_sp, NULL }, 108 { "irq_sp", &nil, db_access_irq_sp, NULL },
|
/src/sys/arch/i386/stand/lib/ |
biosdisk.c | 321 static const struct uuid nil = { .time_low = 0 }; local in function:guid_is_nil 322 return (memcmp(u, &nil, sizeof(*u)) == 0 ? true : false);
|