HomeSort by relevance Sort by last modified time
    Searched refs:newkey (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_key_create.c 79 pthread_key_t newkey; local
81 if ((newkey = (pthread_key_t) calloc (1, sizeof (*newkey))) == NULL)
85 else if ((newkey->key = TlsAlloc ()) == TLS_OUT_OF_INDEXES)
89 free (newkey);
90 newkey = NULL;
101 newkey->keyLock = 0;
102 newkey->destructor = destructor;
105 *key = newkey;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 79 newkey = os.path.normcase(filename)
80 if newkey == key:
82 if newkey in self.dict:
83 conflict = self.dict[newkey]
89 self.dict[newkey] = edit
90 self.inversedict[edit] = newkey
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 79 newkey = os.path.normcase(filename)
80 if newkey == key:
82 if newkey in self.dict:
83 conflict = self.dict[newkey]
89 self.dict[newkey] = edit
90 self.inversedict[edit] = newkey
  /external/openfst/src/lib/
symbol-table-ops.cc 92 uint64 newkey = 0; local
95 compact->AddSymbol(si->second, newkey++);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mutants.py 63 newkey = Horrid(random.randrange(100))
64 if newkey not in target:
66 target[newkey] = Horrid(random.randrange(100))
67 keys.append(newkey)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mutants.py 63 newkey = Horrid(random.randrange(100))
64 if newkey not in target:
66 target[newkey] = Horrid(random.randrange(100))
67 keys.append(newkey)
  /external/chromium_org/third_party/openssl/openssl/apps/
CA.sh 86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
88 echo "Certificate is in newcert.pem, private key is in newkey.pem"
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
94 echo "Request is in newreq.pem, private key is in newkey.pem"
req.c 120 * -newkey - make a key and a request.
171 long newkey = -1; local
297 else if (strcmp(*argv,"-newkey") == 0)
428 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
429 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
431 BIO_printf(bio_err," -newkey ec:file generate a new EC key, parameters taken from CA in 'file'\n");
649 genctx = set_keygen_ctx(bio_err, keyalg, &pkey_type, &newkey,
655 if (newkey <= 0)
657 if (!NCONF_get_number(req_conf,SECTION,BITS, &newkey))
658 newkey=DEFAULT_KEY_LENGTH
    [all...]
  /external/openssl/apps/
CA.sh 86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
88 echo "Certificate is in newcert.pem, private key is in newkey.pem"
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
94 echo "Request is in newreq.pem, private key is in newkey.pem"
req.c 120 * -newkey - make a key and a request.
171 long newkey = -1; local
297 else if (strcmp(*argv,"-newkey") == 0)
428 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
429 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
431 BIO_printf(bio_err," -newkey ec:file generate a new EC key, parameters taken from CA in 'file'\n");
649 genctx = set_keygen_ctx(bio_err, keyalg, &pkey_type, &newkey,
655 if (newkey <= 0)
657 if (!NCONF_get_number(req_conf,SECTION,BITS, &newkey))
658 newkey=DEFAULT_KEY_LENGTH
    [all...]
  /external/openssh/
monitor_wrap.c 473 Newkeys *newkey = NULL; local
485 newkey = xmalloc(sizeof(*newkey));
486 enc = &newkey->enc;
487 mac = &newkey->mac;
488 comp = &newkey->comp;
525 return (newkey);
536 Newkeys *newkey = (Newkeys *)packet_get_newkeys(mode); local
538 debug3("%s: converting %p", __func__, newkey);
540 if (newkey == NULL)
    [all...]
  /external/libsepol/src/
expand.c 3131 avtab_key_t newkey; local
3261 avtab_key_t newkey; local
    [all...]
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 67 openssl req -config ${DIR}/default.cnf -newkey dsa:/tmp/dsaparam.pem -keyout /tmp/dsapriv.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_cert -req -signkey /tmp/dsapriv.pem -outform d > ${DIR}/cert-dsa.der
71 openssl req -config ${DIR}/default.cnf -newkey ec:/tmp/ecparam.pem -keyout /tmp/ecpriv.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_critical_cert -req -signkey /tmp/ecpriv.pem -outform d > ${DIR}/cert-ec.der
  /external/doclava/src/com/google/doclava/
SampleCode.java 109 public void writeProjectDirectory(List<Node> parent, File dir, String relative, Boolean recursed, Data hdf, String newkey) {
120 String key = newkey;
198 // getSummaryFromDir(hdf, dir, newkey);

Completed in 1997 milliseconds