Lines Matching refs:value
25 undefine(char *key, unsigned int type, isc_symvalue_t value, void *arg) {
30 isc_mem_free(mctx, value.as_pointer);
44 isc_symvalue_t value;
69 value.as_pointer = isc_mem_strdup(mctx, str);
70 ATF_REQUIRE(value.as_pointer != NULL);
71 result = isc_symtab_define(st, key, 1, value, policy);
74 undefine(key, 1, value, NULL);
86 value.as_pointer = isc_mem_strdup(mctx, str);
87 ATF_REQUIRE(value.as_pointer != NULL);
88 result = isc_symtab_define(st, key, 1, value, policy);
90 undefine(key, 1, value, NULL);
100 result = isc_symtab_lookup(st, str, 0, &value);
102 ATF_CHECK_STREQ(str, (char *)value.as_pointer);
123 result = isc_symtab_lookup(st, str, 0, &value);