OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SW_OKAY
(Results
1 - 12
of
12
) sorted by null
/external/avahi/avahi-compat-howl/samples/
publish.c
50
return
SW_OKAY
;
69
if (sw_discovery_init(&discovery) !=
SW_OKAY
)
81
if (sw_text_record_init(&text_record) !=
SW_OKAY
)
89
if (sw_text_record_add_string(text_record, argv[i]) !=
SW_OKAY
)
98
if ((result = sw_discovery_publish(discovery, 0, argv[1], argv[2], NULL, NULL, atoi(argv[3]), sw_text_record_bytes(text_record), sw_text_record_len(text_record), my_service_reply, NULL, &id)) !=
SW_OKAY
)
browse.c
54
sw_result err =
SW_OKAY
;
65
while (sw_text_record_iterator_next(it, key, oval, &oval_len) ==
SW_OKAY
)
128
if (sw_discovery_resolve(discovery, interface_index, name, type, domain, my_resolver, NULL, &rid) !=
SW_OKAY
)
149
return
SW_OKAY
;
resolve.c
54
sw_result err =
SW_OKAY
;
65
while (sw_text_record_iterator_next(it, key, oval, &oval_len) ==
SW_OKAY
)
query.c
62
return
SW_OKAY
;
/external/avahi/avahi-compat-howl/
address.c
61
return
SW_OKAY
;
73
return
SW_OKAY
;
91
return
SW_OKAY
;
103
return
SW_OKAY
;
137
return
SW_OKAY
;
146
return
SW_OKAY
;
201
return
SW_OKAY
;
browse-domain-test.c
30
#define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r ==
SW_OKAY
); }
60
return
SW_OKAY
;
text-test.c
30
#define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r ==
SW_OKAY
); }
84
while (sw_text_record_iterator_next(it, key, val, &val_len) ==
SW_OKAY
) {
text.c
71
return
SW_OKAY
;
82
return
SW_OKAY
;
101
return
SW_OKAY
;
121
return
SW_OKAY
;
143
return
SW_OKAY
;
213
return
SW_OKAY
;
224
return
SW_OKAY
;
257
return
SW_OKAY
;
address-test.c
31
#define ASSERT_SW_OKAY(t) { sw_result r; r = (t); assert(r ==
SW_OKAY
); }
compat.c
121
return
SW_OKAY
;
399
return
SW_OKAY
;
472
return
SW_OKAY
;
527
result =
SW_OKAY
;
546
return
SW_OKAY
;
567
return
SW_OKAY
;
574
return
SW_OKAY
;
582
if ((result = sw_discovery_read_socket((sw_discovery) self)) !=
SW_OKAY
)
586
return
SW_OKAY
;
597
if ((ret = sw_salt_step(self, NULL)) !=
SW_OKAY
)
[
all
...]
/external/avahi/avahi-compat-howl/include/salt/
salt.h
194
#define
SW_OKAY
0
platform.h
429
#define SW_TRY(EXPR) { sw_result result; if ((result = EXPR) !=
SW_OKAY
) return result; } ((void) 0)
430
#define SW_TRY_GOTO(EXPR) { if ((result = EXPR) !=
SW_OKAY
) goto exit; } ((void) 0)
Completed in 359 milliseconds