Lines Matching defs:oid_str
233 generic_gss_oid_to_str(minor_status, oid, oid_str)
236 gss_buffer_t oid_str;
249 if (oid_str != GSS_C_NO_BUFFER) {
250 oid_str->length = 0;
251 oid_str->value = NULL;
257 if (oid_str == GSS_C_NO_BUFFER)
308 oid_str->length = strlen(bp)+1;
309 oid_str->value = (void *) bp;
324 generic_gss_str_to_oid(minor_status, oid_str, oid)
326 const gss_buffer_t oid_str;
343 if (GSS_EMPTY_BUFFER(oid_str))
350 bp = (char *)oid_str->value;
353 while ((bp < &cp[oid_str->length]) && isspace(*bp))
359 while ((bp < &cp[oid_str->length]) && isspace(*bp))
370 while ((bp < &cp[oid_str->length]) && isdigit(*bp))
372 while ((bp < &cp[oid_str->length]) &&
378 while ((bp < &cp[oid_str->length]) && isdigit(*bp))
380 while ((bp < &cp[oid_str->length]) &&
392 while ((bp < &cp[oid_str->length]) && isdigit(*bp))
394 while ((bp < &cp[oid_str->length]) &&