/external/e2fsprogs/util/ |
H A D | Makefile.in | 22 all:: $(PROGS) gen-tarball 32 gen-tarball: $(srcdir)/gen-tarball.in $(top_builddir)/config.status 34 @cd $(top_builddir); CONFIG_FILES=util/gen-tarball ./config.status 35 @chmod +x gen-tarball 37 tarballs: gen-tarball 38 sh gen-tarball debian 39 sh gen-tarball all 40 sh gen-tarball subset 43 $(RM) -f $(PROGS) \#* *.s *.o *.a *~ core *.tar.gz gen [all...] |
/external/openssl/crypto/x509v3/ |
H A D | v3_alt.c | 68 static int do_othername(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx); 69 static int do_dirname(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx); 97 GENERAL_NAME *gen; local 99 gen = sk_GENERAL_NAME_value(gens, i); 100 ret = i2v_GENERAL_NAME(method, gen, ret); 107 GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret) 112 switch (gen->type) 127 X509V3_add_value_uchar("email",gen->d.ia5->data, &ret); 131 X509V3_add_value_uchar("DNS",gen->d.ia5->data, &ret); 135 X509V3_add_value_uchar("URI",gen 177 GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen) argument 259 GENERAL_NAME *gen; local 276 GENERAL_NAME *gen; local 327 GENERAL_NAME *gen; local 348 GENERAL_NAME *gen = NULL; local 399 GENERAL_NAME *gen; local 429 GENERAL_NAME *gen = NULL; local 566 do_othername(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx) argument 591 do_dirname(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx) argument [all...] |
H A D | v3_ncons.c | 75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc); 76 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen); 286 GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, i); 287 r = nc_match(gen, nc); 296 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc) 308 if (gen->type != sub->base->type) 317 r = nc_match_single(gen, sub->base); 332 if (gen->type != sub->base->type) 337 r = nc_match_single(gen, sub->base); 349 static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAM [all...] |
H A D | v3_akey.c | 120 GENERAL_NAME *gen = NULL; local 187 || !(gen = GENERAL_NAME_new()) 188 || !sk_GENERAL_NAME_push(gens, gen)) 193 gen->type = GEN_DIRNAME; 194 gen->d.dirn = isname;
|
H A D | v3_genn.c | 228 int GENERAL_NAME_set0_othername(GENERAL_NAME *gen, 237 GENERAL_NAME_set0_value(gen, GEN_OTHERNAME, oth); 241 int GENERAL_NAME_get0_otherName(GENERAL_NAME *gen, 244 if (gen->type != GEN_OTHERNAME) 247 *poid = gen->d.otherName->type_id; 249 *pvalue = gen->d.otherName->value;
|
H A D | v3_crld.c | 316 GENERAL_NAME *gen = NULL; local 341 if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) 345 if(!sk_GENERAL_NAME_push(gens, gen)) 347 gen = NULL; 367 GENERAL_NAME_free(gen);
|
H A D | v3_purp.c | 335 GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i); local 336 if (gen->type == GEN_DIRNAME) 338 iname = gen->d.directoryName; 749 GENERAL_NAME *gen; local 755 gen = sk_GENERAL_NAME_value(gens, i); 756 if(gen->type == GEN_DIRNAME) 758 nm = gen->d.dirn;
|
/external/gtest/test/ |
H A D | gtest-param-test_test.cc | 131 const ParamGenerator<int> gen = Range(0, 10); local 132 ParamGenerator<int>::iterator it = gen.begin(); 166 const ParamGenerator<int> gen = Range(0, 3); local 168 VerifyGenerator(gen, expected_values); 174 const ParamGenerator<int> gen = Range(0, 1); local 176 VerifyGenerator(gen, expected_values); 182 const ParamGenerator<int> gen = Range(0, 0); local 183 VerifyGeneratorIsEmpty(gen); 189 const ParamGenerator<int> gen = Range(0, 9, 3); local 191 VerifyGenerator(gen, expected_value 199 const ParamGenerator<int> gen = Range(0, 4, 3); local 231 const ParamGenerator<DogAdder> gen = local 265 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); local 281 const ParamGenerator<int> gen = ValuesIn(array); local 289 const ParamGenerator<int> gen = ValuesIn(array); local 297 const ParamGenerator<int> gen = ValuesIn(array); local 309 const ParamGenerator<int> gen = ValuesIn(values); local 322 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 334 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 345 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 352 const ParamGenerator<int> gen = Values(3, 5, 8); local 361 const ParamGenerator<double> gen = Values(3, 5.0f, 8.0); local 368 const ParamGenerator<int> gen = Values( local 387 const ParamGenerator<int> gen = Values(42); local 395 const ParamGenerator<bool> gen = Bool(); local 434 const ParamGenerator<tuple<const char*, int> > gen = local 445 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), local 460 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), local 471 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), local 481 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0), local 489 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), local 500 int, int> > gen = Combine(Values(foo, bar), local 518 ParamGenerator<int> gen = Values(1, 2); local [all...] |
/external/protobuf/gtest/test/ |
H A D | gtest-param-test_test.cc | 131 const ParamGenerator<int> gen = Range(0, 10); local 132 ParamGenerator<int>::iterator it = gen.begin(); 166 const ParamGenerator<int> gen = Range(0, 3); local 168 VerifyGenerator(gen, expected_values); 174 const ParamGenerator<int> gen = Range(0, 1); local 176 VerifyGenerator(gen, expected_values); 182 const ParamGenerator<int> gen = Range(0, 0); local 183 VerifyGeneratorIsEmpty(gen); 189 const ParamGenerator<int> gen = Range(0, 9, 3); local 191 VerifyGenerator(gen, expected_value 199 const ParamGenerator<int> gen = Range(0, 4, 3); local 231 const ParamGenerator<DogAdder> gen = local 265 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); local 281 const ParamGenerator<int> gen = ValuesIn(array); local 289 const ParamGenerator<int> gen = ValuesIn(array); local 297 const ParamGenerator<int> gen = ValuesIn(array); local 309 const ParamGenerator<int> gen = ValuesIn(values); local 322 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 334 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 345 const ParamGenerator<int> gen = ValuesIn(values.begin(), values.end()); local 352 const ParamGenerator<int> gen = Values(3, 5, 8); local 361 const ParamGenerator<double> gen = Values(3, 5.0f, 8.0); local 368 const ParamGenerator<int> gen = Values( local 387 const ParamGenerator<int> gen = Values(42); local 395 const ParamGenerator<bool> gen = Bool(); local 434 const ParamGenerator<tuple<const char*, int> > gen = local 445 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), local 460 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), local 471 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), local 481 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0), local 489 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), local 500 int, int> > gen = Combine(Values(foo, bar), local 518 ParamGenerator<int> gen = Values(1, 2); local [all...] |
/external/ipsec-tools/src/racoon/ |
H A D | vendorid.c | 206 * gen ... points to Vendor ID payload. 209 check_vendorid(struct isakmp_gen *gen) argument 215 if (gen == NULL) 218 vidlen = ntohs(gen->len) - sizeof(*gen); 220 current = lookup_vendor_id_by_hash((char *)(gen + 1)); 237 plogdump(LLV_DEBUG, (char *)(gen + 1), vidlen);
|
H A D | isakmp_frag.c | 166 vendorid_frag_cap(gen) 167 struct isakmp_gen *gen; 171 hp = (int *)(gen + 1);
|
H A D | isakmp_inf.c | 133 struct isakmp_gen *gen; 169 if (msg->l < sizeof(*isakmp) + sizeof(*gen)) { 177 gen = (struct isakmp_gen *)((caddr_t)isakmp + sizeof(struct isakmp)); 178 np = gen->np; 196 if (msg->l < sizeof(*isakmp) + ntohs(gen->len) + sizeof(*nd)) { 203 p = (caddr_t) gen + sizeof(struct isakmp_gen); 204 nd = (struct isakmp_gen *) ((caddr_t) gen + ntohs(gen->len)); 208 ntohs(gen->len))) { 239 if (ntohs(gen 132 struct isakmp_gen *gen; local 894 struct isakmp_gen *gen; local [all...] |
/external/chromium/third_party/icu/source/test/intltest/ |
H A D | dtptngts.cpp | 299 DateTimePatternGenerator *gen = DateTimePatternGenerator::createInstance(deLocale, status); local 304 UnicodeString findPattern = gen->getBestPattern(UnicodeString("MMMddHmm"), status); 308 delete gen; 314 delete gen; 328 conflictingStatus = gen->addPattern(UnicodeString("d'. von' MMMM", -1, US_INV), true, conflictingPattern, status); 333 UnicodeString testPattern=gen->getBestPattern(UnicodeString("MMMMdd"), status); 334 testPattern=gen->getBestPattern(UnicodeString("MMMddHmm"), status); 335 format->applyPattern(gen->getBestPattern(UnicodeString("MMMMddHmm"), status)); 359 UnicodeString newPattern = gen->replaceFieldTypes(pattern, UnicodeString("vvvv"), status); 370 gen [all...] |
/external/icu4c/test/intltest/ |
H A D | dtptngts.cpp | 300 DateTimePatternGenerator *gen = DateTimePatternGenerator::createInstance(deLocale, status); local 305 UnicodeString findPattern = gen->getBestPattern(UnicodeString("MMMddHmm"), status); 309 delete gen; 315 delete gen; 329 conflictingStatus = gen->addPattern(UnicodeString("d'. von' MMMM", -1, US_INV), true, conflictingPattern, status); 334 UnicodeString testPattern=gen->getBestPattern(UnicodeString("MMMMdd"), status); 335 testPattern=gen->getBestPattern(UnicodeString("MMMddHmm"), status); 336 format->applyPattern(gen->getBestPattern(UnicodeString("MMMMdHmm"), status)); 360 UnicodeString newPattern = gen->replaceFieldTypes(pattern, UnicodeString("vvvv"), status); 371 gen [all...] |
/external/openssl/crypto/ec/ |
H A D | eck_prn.c | 154 BIGNUM *p=NULL, *a=NULL, *b=NULL, *gen=NULL, local 242 if ((gen = EC_POINT_point2bn(x, point, 254 if (buf_len < (i = (size_t)BN_num_bytes(gen))) 309 if ((gen != NULL) && !ASN1_bn_print(bp, gen_compressed, gen, 315 if ((gen != NULL) && !ASN1_bn_print(bp, gen_uncompressed, gen, 321 if ((gen != NULL) && !ASN1_bn_print(bp, gen_hybrid, gen, 342 if (gen) [all...] |
/external/openssl/crypto/ocsp/ |
H A D | ocsp_cl.c | 102 GENERAL_NAME *gen; local 103 gen = GENERAL_NAME_new(); 104 if (gen == NULL) 106 if (!X509_NAME_set(&gen->d.directoryName, nm)) 108 GENERAL_NAME_free(gen); 111 gen->type = GEN_DIRNAME; 114 req->tbsRequest->requestorName = gen;
|
H A D | ocsp_vfy.c | 363 GENERAL_NAME *gen; local 371 gen = req->tbsRequest->requestorName; 372 if (!gen || gen->type != GEN_DIRNAME) 377 nm = gen->d.directoryName;
|
/external/genext2fs/ |
H A D | test.sh | 14 . ./test-gen.lib
|
H A D | test-mount.sh | 9 . ./test-gen.lib
|
/external/openssl/crypto/ |
H A D | ex_data.c | 301 EX_CLASS_ITEM d, *p, *gen; local 308 gen = OPENSSL_malloc(sizeof(EX_CLASS_ITEM)); 309 if(gen) 311 gen->class_index = class_index; 312 gen->meth_num = 0; 313 gen->meth = sk_CRYPTO_EX_DATA_FUNCS_new_null(); 314 if(!gen->meth) 315 OPENSSL_free(gen); 320 (void)lh_EX_CLASS_ITEM_insert(ex_data, gen); 321 p = gen; [all...] |
/external/v8/test/cctest/ |
H A D | test-strings.cc | 19 static uint32_t gen() { function 86 int len = gen() % 16; 90 switch (gen() % 4) { 94 buf[j] = gen() % 65536; 106 buf[j] = gen() % 128; 118 buf[j] = gen() % 65536; 130 buf[j] = gen() % 128;
|
/external/openssl/crypto/dh/ |
H A D | dh.h | 213 #define EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, gen) \ 215 EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR, gen, NULL)
|
/external/openssl/include/openssl/ |
H A D | dh.h | 213 #define EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, gen) \ 215 EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR, gen, NULL)
|
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Borland/ |
H A D | Makefile | 86 BASESRC = ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.c \
|
/external/openssl/crypto/rand/ |
H A D | rand_win.c | 244 CRYPTGENRANDOM gen = NULL; local 344 gen = (CRYPTGENRANDOM) GetProcAddress(advapi, 350 if (acquire && gen && release) 357 if (gen(hProvider, sizeof(buf), buf) != 0) 371 if (gen(hProvider, sizeof(buf), buf) != 0)
|