/external/avahi/avahi-client/ |
client.h | 45 AVAHI_CLIENT_CONNECTING = 101 /**< We're still connecting. This state is only entered when AVAHI_CLIENT_NO_FAIL has been passed to avahi_client_new() and the daemon is not yet available. */ 50 AVAHI_CLIENT_NO_FAIL = 2 /**< Don't fail if the daemon is not available when avahi_client_new() is called, instead enter AVAHI_CLIENT_CONNECTING state and wait for the daemon to appear */ 57 void* userdata /**< The user data that was passed to avahi_client_new() */); 62 AvahiClient* avahi_client_new ( 65 AvahiClientCallback callback /**< A callback that is called whenever the state of the client changes. This may be NULL. Please note that this function is called for the first time from within the avahi_client_new() context! Thus, in the callback you should not make use of global variables that are initialized only after your call to avahi_client_new(). A common mistake is to store the AvahiClient pointer returned by avahi_client_new() in a global variable and assume that this global variable already contains the valid pointer when the callback is called for the first time. A work-around for this is to always use the AvahiClient pointer passed to the callback function instead of the global pointer. */, 67 int *error /**< If creation of the client fails, this integer will contain the error cause. May be NULL if you aren't interested in the reason why avahi_client_new() failed. */);
|
srv-test.c | 64 client = avahi_client_new(poll_api, 0, NULL, NULL, NULL);
|
rr-test.c | 99 client = avahi_client_new(poll_api, 0, NULL, NULL, NULL);
|
client-test.c | 229 if (!(avahi = avahi_client_new(poll_api, 0, avahi_client_callback, (char*) "omghai2u", &error))) {
|
client.c | 478 AvahiClient *avahi_client_new(const AvahiPoll *poll_api, AvahiClientFlags flags, AvahiClientCallback callback, void *userdata, int *ret_error) { function
|
/external/avahi/examples/ |
glib-integration.c | 108 client = avahi_client_new (poll_api, /* AvahiPoll object from above */
|
client-browse-services.c | 165 client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error);
|
client-publish-service.c | 247 client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error);
|
/external/libweave/examples/provider/ |
avahi_client.cc | 36 client_.reset(avahi_client_new(avahi_threaded_poll_get(thread_pool_.get()), function
|
/external/avahi/avahi-utils/ |
avahi-set-host-name.c | 159 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error))) {
|
avahi-publish.c | 169 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), AVAHI_CLIENT_NO_FAIL, client_callback, config, &error))) { 385 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), config.no_fail ? AVAHI_CLIENT_NO_FAIL : 0, client_callback, &config, &error))) {
|
avahi-resolve.c | 271 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error))) {
|
avahi-browse.c | 573 /* This function might be called when avahi_client_new() has not 598 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), AVAHI_CLIENT_NO_FAIL, client_callback, config, &error))) { 828 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), config.no_fail ? AVAHI_CLIENT_NO_FAIL : 0, client_callback, &config, &error))) {
|
/system/weaved/buffet/ |
avahi_mdns_client.cc | 57 client_.reset(avahi_client_new( function
|
/external/avahi/avahi-sharp/ |
Client.cs | 129 private static extern IntPtr avahi_client_new (IntPtr poll, ClientFlags flags, ClientCallback handler, method in class:Avahi.Client 267 handle = avahi_client_new (poll, flags, cb, IntPtr.Zero, out error);
|
/external/avahi/avahi-compat-libdns_sd/ |
compat.c | 646 if (!(sdref->client = avahi_client_new(avahi_simple_poll_get(sdref->simple_poll), 0, generic_client_callback, sdref, &error))) { 759 if (!(sdref->client = avahi_client_new(avahi_simple_poll_get(sdref->simple_poll), 0, generic_client_callback, sdref, &error))) { 871 if (!(sdref->client = avahi_client_new(avahi_simple_poll_get(sdref->simple_poll), 0, generic_client_callback, sdref, &error))) { 1149 if (!(sdref->client = avahi_client_new(avahi_simple_poll_get(sdref->simple_poll), 0, reg_client_callback, sdref, &error))) { [all...] |
/external/avahi/avahi-gobject/ |
ga-client.c | 243 aclient = avahi_client_new(avahi_glib_poll_get(priv->poll),
|
/external/avahi/avahi-compat-howl/ |
compat.c | 381 if (!((*self)->client = avahi_client_new(avahi_simple_poll_get((*self)->simple_poll), 0, client_callback, *self, &error))) {
|
/external/avahi/avahi-ui/ |
avahi-ui.c | 711 if (!(d->priv->client = avahi_client_new(avahi_glib_poll_get(d->priv->glib_poll), 0, client_callback, d, &error))) { [all...] |