HomeSort by relevance Sort by last modified time
    Searched defs:tmpentry (Results 1 - 3 of 3) sorted by null

  /external/ipsec-tools/src/racoon/
isakmp_unity.c 330 struct unity_netentry * tmpentry = *list; local
331 while (tmpentry->next != NULL)
332 tmpentry = tmpentry->next;
333 tmpentry->next = newentry;
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x_name.c 330 X509_NAME_ENTRY *entry, *tmpentry = NULL; local
360 tmpentry = X509_NAME_ENTRY_new();
361 tmpentry->object = OBJ_dup(entry->object);
362 if (!asn1_string_canon(tmpentry->value, entry->value))
364 if(!sk_X509_NAME_ENTRY_push(entries, tmpentry))
366 tmpentry = NULL;
386 if (tmpentry)
387 X509_NAME_ENTRY_free(tmpentry);
  /external/openssl/crypto/asn1/
x_name.c 323 X509_NAME_ENTRY *entry, *tmpentry = NULL; local
352 tmpentry = X509_NAME_ENTRY_new();
353 tmpentry->object = OBJ_dup(entry->object);
354 if (!asn1_string_canon(tmpentry->value, entry->value))
356 if(!sk_X509_NAME_ENTRY_push(entries, tmpentry))
358 tmpentry = NULL;
378 if (tmpentry)
379 X509_NAME_ENTRY_free(tmpentry);

Completed in 113 milliseconds