/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-policy2c/ |
D | minimal-secure-streams.c | 73 const lws_ss_policy_t *pol, *lastpol = NULL; in main() local 151 pol = lws_ss_policy_get(context); in main() 153 while (pol) { in main() 160 md = pol->metadata; in main() 168 md = pol->metadata; in main() 174 purify_csymbol(pol->streamtype, buf, in main() 211 if (pol->retry_bo) { in main() 214 if (a->orig == (const char *)pol->retry_bo) in main() 229 a->orig = (const char *)pol->retry_bo; in main() 234 for (n = 0; n < pol->retry_bo->retry_ms_table_count; n++) in main() [all …]
|
/third_party/toybox/toys/other/ |
D | chrt.c | 58 int pol, pri; in chrt_main() local 62 for (pol = 0; pol<ARRAY_LEN(polnames); pol++) if (polnames[pol]) in chrt_main() 63 printf("%s min/max priority\t: %d/%d\n", polnames[pol], in chrt_main() 64 sched_get_priority_min(pol), sched_get_priority_max(pol)); in chrt_main() 73 if (-1==(pol = sched_getscheduler(TT.p))) perror_exit("pid %ld", TT.p); in chrt_main() 74 if (pol & SCHED_RESET_ON_FORK) R = "|SCHED_RESET_ON_FORK"; in chrt_main() 75 if ((pol &= ~SCHED_RESET_ON_FORK)<ARRAY_LEN(polnames)) s = polnames[pol]; in chrt_main() 89 if (-1==(pol = highest_bit(toys.optflags&0x2f))) pol = SCHED_RR; in chrt_main() 90 pri = atolx_range(*toys.optargs, sched_get_priority_min(pol), in chrt_main() 91 sched_get_priority_max(pol)); in chrt_main() [all …]
|
/third_party/libwebsockets/lib/secure-streams/cpp/ |
D | lss.cxx | 58 memset(&pol, 0, sizeof(pol)); in lss() 78 ssi.policy = &pol; /* we will provide our own policy */ in lss() 94 pol.protocol = n >> 1; in lss() 96 pol.flags |= LWSSSPOLF_TLS; in lss() 100 if (lws_parse_uri(uri, &p, &pol.endpoint, &n, &urlpath)) in lss() 103 pol.port = (uint16_t)n; in lss() 105 if (pol.protocol <= LWSSSP_WS) { in lss() 106 pol.u.http.url = urlpath; in lss() 112 pol.flags |= LWSSSPOLF_QUIRK_NGHTTP2_END_STREAM | in lss() 116 if (pol.protocol < LWSSSP_WS) in lss() [all …]
|
/third_party/libwebsockets/lib/secure-streams/ |
D | policy-common.c | 303 const lws_ss_policy_t *pol, char doref) in lws_ss_policy_ref_trust_store() argument 311 if (!pol->trust.store) { in lws_ss_policy_ref_trust_store() 329 v = lws_get_vhost_by_name(context, pol->trust.store->name); in lws_ss_policy_ref_trust_store() 336 i.vhost_name = pol->trust.store->name; in lws_ss_policy_ref_trust_store() 339 i.client_ssl_ca_mem = pol->trust.store->ssx509[0]->ca_der; in lws_ss_policy_ref_trust_store() 341 pol->trust.store->ssx509[0]->ca_der_len; in lws_ss_policy_ref_trust_store() 345 i.vhost_name, pol->trust.store->ssx509[0]->vhost_name); in lws_ss_policy_ref_trust_store() 355 for (n = 1; v && n < pol->trust.store->count; n++) { in lws_ss_policy_ref_trust_store() 357 pol->trust.store->ssx509[n]->vhost_name); in lws_ss_policy_ref_trust_store() 360 pol->trust.store->ssx509[n]->ca_der, in lws_ss_policy_ref_trust_store() [all …]
|
D | secure-streams.c | 942 const lws_ss_policy_t *pol; in lws_ss_create() local 954 pol = ssi->policy; in lws_ss_create() 955 if (!pol) { in lws_ss_create() 972 pol = NULL; in lws_ss_create() 974 pol = lws_ss_policy_lookup(context, ssi->streamtype); in lws_ss_create() 978 pol = lws_ss_policy_lookup(context, ssi->streamtype); in lws_ss_create() 980 if (!pol) { in lws_ss_create() 997 if (!(pol->flags & LWSSSPOLF_LOCAL_SINK)) { in lws_ss_create() 1010 if (!(pol->flags & LWSSSPOLF_LOCAL_SINK)) { in lws_ss_create() 1032 if (pol->plugins[0]) in lws_ss_create() [all …]
|
D | private-lib-secure-streams.h | 517 const lws_ss_policy_t *pol, char doref); 547 const lws_ss_policy_t *pol);
|
/third_party/openssl/crypto/x509/ |
D | v3_cpols.c | 23 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, 94 POLICYINFO *pol; variable 133 pol = policy_section(ctx, polsect, ia5org); 135 if (pol == NULL) 144 pol = POLICYINFO_new(); 145 if (pol == NULL) { 150 pol->policyid = pobj; 152 if (!sk_POLICYINFO_push(pols, pol)) { 153 POLICYINFO_free(pol); 171 POLICYINFO *pol; in policy_section() local [all …]
|
/third_party/python/Lib/test/ |
D | test_http_cookiejar.py | 450 pol = DefaultCookiePolicy() 473 r = pol.domain_return_ok(domain, request) 658 pol = DefaultCookiePolicy(rfc2965=True) 660 c = CookieJar(pol) 664 c = CookieJar(pol) 668 c = CookieJar(pol) 673 c = CookieJar(pol) 748 pol = DefaultCookiePolicy() 751 c = CookieJar(pol) 890 pol = DefaultCookiePolicy( [all …]
|
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir.cpp | 253 LValue::clone(ClonePolicy<Function>& pol) const in clone() 255 LValue *that = new_LValue(pol.context(), reg.file); in clone() 257 pol.set<Value>(this, that); in clone() 290 Symbol::clone(ClonePolicy<Function>& pol) const in clone() 292 Program *prog = pol.context()->getProgram(); in clone() 296 pol.set<Value>(this, that); in clone() 364 ImmediateValue::clone(ClonePolicy<Function>& pol) const in clone() 366 Program *prog = pol.context()->getProgram(); in clone() 369 pol.set<Value>(this, that); in clone() 744 Instruction::clone(ClonePolicy<Function>& pol, Instruction *i) const in clone() argument [all …]
|
D | nv50_ir_bb.cpp | 95 BasicBlock::clone(ClonePolicy<Function>& pol) const in clone() 97 BasicBlock *bb = new BasicBlock(pol.context()); in clone() 99 pol.set(this, bb); in clone() 102 bb->insertTail(i->clone(pol)); in clone() 104 pol.context()->cfg.insert(&bb->cfg); in clone() 108 bb->cfg.attach(&pol.get(obb)->cfg, it.getType()); in clone()
|
D | nv50_ir_inlines.h | 328 DeepClonePolicy<Function> pol(ctx); in cloneForward() 331 pol.set(obj->getSrc(i), obj->getSrc(i)); in cloneForward() 333 return obj->clone(pol); in cloneForward()
|
/third_party/openssl/test/ |
D | pkits-test.pl | 819 my $pol = -1; 841 $pol = 1; 850 $pol = 2; 854 if ( $pol == 1 ) { 858 elsif ( $pol == 2 ) {
|
/third_party/libwebsockets/lib/core-net/client/ |
D | sort-dns.c | 168 const struct score_policy *pol = rfc6724_policy; in lws_sort_dns_classify() local 187 p = &ma[pol->ma_ofs]; in lws_sort_dns_classify() 188 for (m = 0; m < pol->prefix >> 3; m++) in lws_sort_dns_classify() 192 if ((pol->prefix & 7) && (*p & frac[pol->prefix & 7]) != in lws_sort_dns_classify() 193 (*po & frac[pol->prefix & 7])) in lws_sort_dns_classify() 196 *score = pol->score; in lws_sort_dns_classify() 201 pol++; in lws_sort_dns_classify()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/ |
D | stress.c | 104 int pol; in threaded() local 110 ret = pthread_getschedparam(td[i].thread, &pol, &sp); in threaded() 116 if (pol != td[i].policy) { in threaded()
|
/third_party/ffmpeg/libavcodec/ |
D | opus_silk.c | 201 static void silk_lsp2poly(const int32_t lsp[16], int32_t pol[16], int half_order) in silk_lsp2poly() 205 pol[0] = 65536; // 1.0 in Q16 in silk_lsp2poly() 206 pol[1] = -lsp[0]; in silk_lsp2poly() 209 pol[i + 1] = pol[i - 1] * 2 - ROUND_MULL(lsp[2 * i], pol[i], 16); in silk_lsp2poly() 211 pol[j] += pol[j - 2] - ROUND_MULL(lsp[2 * i], pol[j - 1], 16); in silk_lsp2poly() 213 pol[1] -= lsp[2 * i]; in silk_lsp2poly()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/ |
D | pt.txt | 949 dnam{"pol."} 952 per{"{0}/pol."} 1248 one{"{0} pol²"} 1249 other{"{0} pol²"} 1250 per{"{0} por pol²"} 1571 dnam{"pol."} 1572 one{"{0} pol."} 1573 other{"{0} pol."} 1574 per{"{0}/pol."} 1844 one{"{0} pol³"} [all …]
|
/third_party/icu/icu4c/source/data/unit/ |
D | pt.txt | 1236 dnam{"pol."} 1239 per{"{0}/pol."} 1388 one{"{0} pol²"} 1389 other{"{0} pol²"} 1390 per{"{0} por pol²"} 1649 dnam{"pol."} 1650 one{"{0} pol."} 1651 other{"{0} pol."} 1652 per{"{0}/pol."} 1809 one{"{0} pol³"} [all …]
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | pt.txt | 1236 dnam{"pol."} 1239 per{"{0}/pol."} 1388 one{"{0} pol²"} 1389 other{"{0} pol²"} 1390 per{"{0} por pol²"} 1649 dnam{"pol."} 1650 one{"{0} pol."} 1651 other{"{0} pol."} 1652 per{"{0}/pol."} 1809 one{"{0} pol³"} [all …]
|
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | commands.c | 269 char *pol; in get_mbind_policy() local 271 pol = args; in get_mbind_policy() 275 size_t plen = args - pol; in get_mbind_policy() 277 if (strncmp(pol, polp->pol_name, plen)) in get_mbind_policy() 285 gcp->program_name, pol); in get_mbind_policy()
|
/third_party/selinux/libsepol/src/ |
D | link.c | 1984 policydb_t *pol = state->base; in is_decl_requires_met() local 1997 id = pol->sym_val_to_name[i][j]; in is_decl_requires_met() 2019 id = pol->p_class_val_to_name[i]; in is_decl_requires_met() 2020 cladatum = pol->class_val_to_struct[i]; in is_decl_requires_met() 2176 static int enable_avrules(link_state_t * state, policydb_t * pol) in enable_avrules() argument 2189 for (block = pol->global; block != NULL; block = block->next) { in enable_avrules() 2200 for (block = pol->global; block != NULL; block = block->next) { in enable_avrules() 2238 for (block = pol->global->next; block != NULL; block = block->next) { in enable_avrules() 2249 debug_requirements(state, pol); in enable_avrules() 2477 static int populate_roleattributes(link_state_t *state, policydb_t *pol) in populate_roleattributes() argument [all …]
|
/third_party/libwebsockets/include/ |
D | libwebsockets.hxx | 116 lws_ss_policy_t pol; member in lss
|
/third_party/gstreamer/gstplugins_bad/sys/dvb/ |
D | gstdvbsrc.h | 100 GstDvbSrcPol pol; member
|
/third_party/flutter/skia/third_party/externals/icu/source/data/brkitr/ |
D | pt.txt | 111 "pol.",
|
/third_party/skia/third_party/externals/icu/source/data/brkitr/ |
D | pt.txt | 111 "pol.",
|
/third_party/icu/icu4c/source/data/brkitr/ |
D | pt.txt | 111 "pol.",
|