• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/

Lines Matching refs:AvahiSRBLookup

43 struct AvahiSRBLookup {
59 AVAHI_LLIST_FIELDS(AvahiSRBLookup, lookups);
62 static void lookup_handle_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r);
63 static void lookup_drop_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r);
84 static AvahiSRBLookup* lookup_new(
91 AvahiSRBLookup *l;
101 if (!(l = avahi_new(AvahiSRBLookup, 1)))
116 AVAHI_LLIST_PREPEND(AvahiSRBLookup, lookups, b->lookups, l);
123 static void lookup_unref(AvahiSRBLookup *l) {
130 AVAHI_LLIST_REMOVE(AvahiSRBLookup, lookups, l->record_browser->lookups, l);
152 static AvahiSRBLookup* lookup_ref(AvahiSRBLookup *l) {
160 static AvahiSRBLookup *lookup_find(
167 AvahiSRBLookup *l;
205 AvahiSRBLookup *l = userdata;
260 AvahiSRBLookup *l = userdata;
321 static int lookup_start(AvahiSRBLookup *l) {
342 static int lookup_scan_cache(AvahiSRBLookup *l) {
361 static AvahiSRBLookup* lookup_add(AvahiSRecordBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiKey *key) {
362 AvahiSRBLookup *l;
376 static int lookup_go(AvahiSRBLookup *l) {
403 static void lookup_handle_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r) {
405 AvahiSRBLookup *n;
428 static void lookup_drop_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r) {
430 AvahiSRBLookup *n = NULL;
560 AVAHI_LLIST_HEAD_INIT(AvahiSRBLookup, b->lookups);