Lines Matching defs:text
243 client_context_t *text;
255 text = params->utils->malloc(sizeof(client_context_t));
257 text = sasl_ALLOC(sizeof(client_context_t));
259 if(!text) return SASL_NOMEM;
261 memset(text, 0, sizeof(client_context_t));
263 *conn_context = text;
278 client_context_t *text = (client_context_t *)conn_context;
320 _plug_make_prompts(params->utils, &text->h, prompt_need,
322 convert_prompt(params->utils, &text->h,
343 result = _plug_buf_alloc(params->utils, &text->out_buf,
344 &text->out_buf_len, *clientoutlen + 1);
346 result = _buf_alloc(&text->out_buf, &text->out_buf_len, *clientoutlen + 1);
361 memcpy(text->out_buf, user, *clientoutlen);
369 text->out_buf[*clientoutlen] = '\0';
371 *clientout = text->out_buf;
390 client_context_t *text = (client_context_t *) conn_context;
392 if (!text) return;
395 convert_prompt(utils, &text->h, NULL);
399 if(text->out_buf) utils->free(text->out_buf);
401 utils->free(text);
403 if(text->out_buf) sasl_FREE(text->out_buf);
405 sasl_FREE(text);