HomeSort by: relevance | last modified time | path
    Searched defs:taglist (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/unbound/dist/daemon/
acl_list.h 98 uint8_t* taglist; member in struct:acl_addr
99 /** length of the taglist (in bytes) */
  /src/external/bsd/unbound/dist/respip/
respip.h 40 uint8_t* taglist; member in struct:resp_addr
41 /** length of the taglist (in bytes) */
65 uint8_t* taglist; member in struct:respip_client_info
  /src/external/bsd/unbound/dist/services/
rpz.h 117 uint8_t* taglist; member in struct:rpz
174 * @param taglist: taglist to lookup.
175 * @param taglen: length of taglist.
183 uint8_t* taglist, size_t taglen, struct ub_server_stats* stats,
localzone.h 150 uint8_t* taglist; member in struct:local_zone
151 /** length of the taglist (in bytes) */
253 * Lookup zone that contains the given name, class and taglist.
261 * @param taglist: taglist to lookup.
262 * @param taglen: length of taglist.
269 uint8_t* taglist, size_t taglen, int ignoretags);
303 * @param taglist: taglist for checks. May be NULL.
304 * @param taglen: length of the taglist
    [all...]
  /src/external/bsd/less/dist/
tags.c 65 struct taglist { struct
76 #define TAG_END ((struct tag *) &taglist)
77 static struct taglist taglist = { TAG_END, TAG_END }; variable in typeref:struct:taglist
82 (tp)->prev = taglist.tl_last; \
83 taglist.tl_last->next = (tp); \
84 taglist.tl_last = (tp);
102 while ((tp = taglist.tl_first) != TAG_END)
365 curtag = taglist.tl_first;
603 tp = taglist.tl_first
    [all...]
  /src/external/bsd/unbound/dist/validator/
val_anchor.c 1328 uint16_t* taglist; local
1340 taglist = calloc(anchor->numDS + anchor->numDNSKEY, sizeof(*taglist));
1341 if(!taglist) {
1346 numtag = anchor_list_keytags(anchor, taglist,
1350 free(taglist);
1353 tl = taglist;
1356 free(taglist);
1361 free(taglist);
  /src/external/bsd/unbound/dist/util/
config_file.c 1070 /** compare and print taglist option */
2384 uint8_t* taglist = NULL; local
2390 log_err("parse taglist, but no tags defined");
2394 taglist = calloc(1, len);
2395 if(!taglist) {
2408 free(taglist);
2411 cfg_set_bit(taglist, len, id);
2416 return taglist;
2451 char* config_taglist2str(struct config_file* cfg, uint8_t* taglist,
2458 if(taglist[i] == 0
    [all...]

Completed in 30 milliseconds