Lines Matching defs:handle
124 papiServiceCreate(papi_service_t *handle, char *service_name,
133 if (handle == NULL)
136 if ((*handle = svc = calloc(1, sizeof (*svc))) == NULL)
167 papiServiceDestroy(papi_service_t handle)
169 if (handle != NULL) {
170 service_t *svc = handle;
187 free(handle);
192 papiServiceSetUserName(papi_service_t handle, char *user_name)
196 if (handle != NULL) {
197 service_t *svc = handle;
211 papiServiceSetPassword(papi_service_t handle, char *password)
215 if (handle != NULL) {
216 service_t *svc = handle;
230 papiServiceSetEncryption(papi_service_t handle,
235 if (handle != NULL) {
236 service_t *svc = handle;
248 papiServiceSetAuthCB(papi_service_t handle,
253 if (handle != NULL) {
254 service_t *svc = handle;
265 papiServiceSetAppData(papi_service_t handle, void *app_data)
269 if (handle != NULL) {
270 service_t *svc = handle;
280 papiServiceGetServiceName(papi_service_t handle)
284 if (handle != NULL) {
285 service_t *svc = handle;
294 papiServiceGetUserName(papi_service_t handle)
298 if (handle != NULL) {
299 service_t *svc = handle;
308 papiServiceGetPassword(papi_service_t handle)
312 if (handle != NULL) {
313 service_t *svc = handle;
322 papiServiceGetEncryption(papi_service_t handle)
326 if (handle != NULL) {
327 service_t *svc = handle;
336 papiServiceGetAppData(papi_service_t handle)
340 if (handle != NULL) {
341 service_t *svc = handle;
350 papiServiceGetAttributeList(papi_service_t handle)
353 service_t *svc = handle;
355 if (handle != NULL)
362 papiServiceGetStatusMessage(papi_service_t handle)
365 service_t *svc = handle;