Lines Matching defs:handle
46 interposed_auth_callback(papi_service_t handle, void *app_data)
185 * handle.
218 papiServiceCreate(papi_service_t *handle, char *service_name, char *user_name,
227 if (handle == NULL)
230 if ((*handle = svc = calloc(1, sizeof (*svc))) == NULL)
265 papiServiceDestroy(papi_service_t handle)
267 if (handle != NULL) {
268 service_t *svc = handle;
291 free(handle);
296 papiServiceSetPeer(papi_service_t handle, int fd)
300 if (handle != NULL) {
301 service_t *svc = handle;
312 papiServiceSetUserName(papi_service_t handle, char *user_name)
316 if (handle != NULL) {
317 service_t *svc = handle;
334 papiServiceSetPassword(papi_service_t handle, char *password)
338 if (handle != NULL) {
339 service_t *svc = handle;
356 papiServiceSetEncryption(papi_service_t handle, papi_encryption_t encryption)
360 if (handle != NULL) {
361 service_t *svc = handle;
376 papiServiceSetAuthCB(papi_service_t handle,
381 if (handle != NULL) {
382 service_t *svc = handle;
397 papiServiceSetAppData(papi_service_t handle, void *app_data)
401 if (handle != NULL) {
402 service_t *svc = handle;
413 papiServiceGetServiceName(papi_service_t handle)
417 if (handle != NULL) {
418 service_t *svc = handle;
432 papiServiceGetUserName(papi_service_t handle)
436 if (handle != NULL) {
437 service_t *svc = handle;
451 papiServiceGetPassword(papi_service_t handle)
455 if (handle != NULL) {
456 service_t *svc = handle;
470 papiServiceGetEncryption(papi_service_t handle)
474 if (handle != NULL) {
475 service_t *svc = handle;
490 papiServiceGetAppData(papi_service_t handle)
493 service_t *svc = handle;
495 if (handle != NULL)
502 papiServiceGetAttributeList(papi_service_t handle)
505 service_t *svc = handle;
507 if (handle != NULL) {
528 papiServiceGetStatusMessage(papi_service_t handle)
531 service_t *svc = handle;
533 if (handle != NULL) {