new_client        292 cib/remote.c       crm_client_t *new_client = NULL;
new_client        323 cib/remote.c       new_client = crm_client_alloc(NULL);
new_client        324 cib/remote.c       new_client->remote = calloc(1, sizeof(crm_remote_t));
new_client        328 cib/remote.c           new_client->kind = CRM_CLIENT_TLS;
new_client        331 cib/remote.c           new_client->remote->tls_session =
new_client        334 cib/remote.c           if (new_client->remote->tls_session == NULL) {
new_client        341 cib/remote.c           new_client->kind = CRM_CLIENT_TCP;
new_client        342 cib/remote.c           new_client->remote->tcp_socket = csock;
new_client        346 cib/remote.c       new_client->remote->auth_timeout =
new_client        347 cib/remote.c           g_timeout_add(REMOTE_AUTH_TIMEOUT, remote_auth_timeout_cb, new_client);
new_client        349 cib/remote.c       new_client->remote->source =
new_client        350 cib/remote.c           mainloop_add_fd("cib-remote-client", G_PRIORITY_DEFAULT, csock, new_client,
new_client        464 lib/cib/cib_client.c     cib_notify_client_t *new_client = NULL;
new_client        472 lib/cib/cib_client.c     new_client = calloc(1, sizeof(cib_notify_client_t));
new_client        473 lib/cib/cib_client.c     new_client->event = event;
new_client        474 lib/cib/cib_client.c     new_client->callback = callback;
new_client        476 lib/cib/cib_client.c     list_item = g_list_find_custom(cib->notify_list, new_client, ciblib_GCompareFunc);
new_client        480 lib/cib/cib_client.c         free(new_client);
new_client        484 lib/cib/cib_client.c         cib->notify_list = g_list_append(cib->notify_list, new_client);
new_client        515 lib/cib/cib_client.c     cib_notify_client_t *new_client = NULL;
new_client        528 lib/cib/cib_client.c     new_client = calloc(1, sizeof(cib_notify_client_t));
new_client        529 lib/cib/cib_client.c     new_client->event = event;
new_client        530 lib/cib/cib_client.c     new_client->callback = callback;
new_client        532 lib/cib/cib_client.c     list_item = g_list_find_custom(cib->notify_list, new_client, ciblib_GCompareFunc);
new_client        551 lib/cib/cib_client.c     free(new_client);
new_client       1858 lib/fencing/st_client.c     stonith_notify_client_t *new_client = NULL;
new_client       1864 lib/fencing/st_client.c     new_client = calloc(1, sizeof(stonith_notify_client_t));
new_client       1865 lib/fencing/st_client.c     new_client->event = event;
new_client       1866 lib/fencing/st_client.c     new_client->notify = callback;
new_client       1868 lib/fencing/st_client.c     list_item = g_list_find_custom(private->notify_list, new_client, stonithlib_GCompareFunc);
new_client       1872 lib/fencing/st_client.c         free(new_client);
new_client       1876 lib/fencing/st_client.c         private->notify_list = g_list_append(private->notify_list, new_client);
new_client       1889 lib/fencing/st_client.c     stonith_notify_client_t *new_client = NULL;
new_client       1895 lib/fencing/st_client.c     new_client = calloc(1, sizeof(stonith_notify_client_t));
new_client       1896 lib/fencing/st_client.c     new_client->event = event;
new_client       1897 lib/fencing/st_client.c     new_client->notify = NULL;
new_client       1899 lib/fencing/st_client.c     list_item = g_list_find_custom(private->notify_list, new_client, stonithlib_GCompareFunc);
new_client       1914 lib/fencing/st_client.c     free(new_client);
new_client        772 lrmd/lrmd.c    notify_of_new_client(crm_client_t *new_client)
new_client        786 lrmd/lrmd.c            if (safe_str_eq(client->id, new_client->id)) {
new_client         77 lrmd/lrmd_private.h void notify_of_new_client(crm_client_t *new_client);
new_client        113 lrmd/main.c        crm_client_t *new_client = crm_client_get(c);
new_client        116 lrmd/main.c        CRM_ASSERT(new_client != NULL);
new_client        120 lrmd/main.c        notify_of_new_client(new_client);
new_client        196 lrmd/tls_backend.c     crm_client_t *new_client = NULL;
new_client        215 lrmd/tls_backend.c     new_client = crm_client_alloc(NULL);
new_client        216 lrmd/tls_backend.c     new_client->remote = calloc(1, sizeof(crm_remote_t));
new_client        217 lrmd/tls_backend.c     new_client->kind = CRM_CLIENT_TLS;
new_client        218 lrmd/tls_backend.c     new_client->remote->tls_session = session;
new_client        219 lrmd/tls_backend.c     new_client->remote->auth_timeout =
new_client        220 lrmd/tls_backend.c         g_timeout_add(LRMD_REMOTE_AUTH_TIMEOUT, lrmd_auth_timeout_cb, new_client);
new_client        221 lrmd/tls_backend.c     crm_notice("LRMD client connection established. %p id: %s", new_client, new_client->id);
new_client        223 lrmd/tls_backend.c     new_client->remote->source =
new_client        224 lrmd/tls_backend.c         mainloop_add_fd("lrmd-remote-client", G_PRIORITY_DEFAULT, csock, new_client,