Home
last modified time | relevance | path

Searched refs:vers (Results 1 - 25 of 184) sorted by relevance

12345678

/third_party/skia/third_party/externals/libpng/contrib/tools/
H A Dchkfmt21 vers=
61 vers="`sed -n -e \
64 echo "chkfmt: checking version $vers"
66 if test -z "$vers"
104 # Note that vers can only contain 0-9, . and a-z
105 if test -n "$vers"
107 sed -e "s/$vers/a.b.cc/g" "$file" >"$file".$$
/kernel/linux/linux-5.10/net/sunrpc/
H A Dstats.c55 const struct rpc_version *vers = prog->version[i]; in rpc_proc_show() local
56 if (!vers) in rpc_proc_show()
59 vers->number, vers->nrprocs); in rpc_proc_show()
60 for (j = 0; j < vers->nrprocs; j++) in rpc_proc_show()
61 seq_printf(seq, " %u", vers->counts[j]); in rpc_proc_show()
85 const struct svc_version *vers; in svc_seq_show() local
103 vers = prog->pg_vers[i]; in svc_seq_show()
104 if (!vers) in svc_seq_show()
106 seq_printf(seq, "proc%d %u", i, vers in svc_seq_show()
[all...]
H A Dsvc.c428 unsigned int vers; in __svc_create() local
446 for (vers=0; vers<prog->pg_nvers ; vers++) in __svc_create()
447 if (prog->pg_vers[vers]) { in __svc_create()
448 prog->pg_hivers = vers; in __svc_create()
449 if (prog->pg_lovers > vers) in __svc_create()
450 prog->pg_lovers = vers; in __svc_create()
451 if (prog->pg_vers[vers]->vs_xdrsize > xdrsize) in __svc_create()
452 xdrsize = prog->pg_vers[vers] in __svc_create()
1020 const struct svc_version *vers = progp->pg_vers[version]; svc_generic_rpcbind_set() local
1283 u32 prog, vers; svc_process_common() local
[all...]
/kernel/linux/linux-6.6/net/sunrpc/
H A Dstats.c55 const struct rpc_version *vers = prog->version[i]; in rpc_proc_show() local
56 if (!vers) in rpc_proc_show()
59 vers->number, vers->nrprocs); in rpc_proc_show()
60 for (j = 0; j < vers->nrprocs; j++) in rpc_proc_show()
61 seq_printf(seq, " %u", vers->counts[j]); in rpc_proc_show()
85 const struct svc_version *vers; in svc_seq_show() local
104 vers = prog->pg_vers[i]; in svc_seq_show()
105 if (!vers) in svc_seq_show()
107 seq_printf(seq, "proc%d %u", i, vers in svc_seq_show()
[all...]
H A Dsvc.c460 unsigned int vers; in __svc_create() local
478 for (vers=0; vers<prog->pg_nvers ; vers++) in __svc_create()
479 if (prog->pg_vers[vers]) { in __svc_create()
480 prog->pg_hivers = vers; in __svc_create()
481 if (prog->pg_lovers > vers) in __svc_create()
482 prog->pg_lovers = vers; in __svc_create()
483 if (prog->pg_vers[vers]->vs_xdrsize > xdrsize) in __svc_create()
484 xdrsize = prog->pg_vers[vers] in __svc_create()
1088 const struct svc_version *vers = progp->pg_vers[version]; svc_generic_rpcbind_set() local
[all...]
/third_party/curl/docs/libcurl/
H A Dsymbols.pl69 my ($sym, $vers)=($1, $2);
76 if($vers =~ /([\d.]+)[ \t-]+([\d.-]+)[ \t]+([\d.]+)/) {
80 elsif($vers =~ /([\d.]+)[ \t-]+([\d.]+)/) {
84 $intr = $vers;
/third_party/selinux/libselinux/src/
H A Dpolicyvers.c17 unsigned vers = DEFAULT_POLICY_VERSION; in security_policyvers() local
28 return vers; in security_policyvers()
38 if (sscanf(buf, "%u", &vers) != 1) in security_policyvers()
41 return vers; in security_policyvers()
H A Dload_policy.c56 int maxvers = kernvers, minvers = DEFAULT_POLICY_VERSION, vers; in selinux_mkload_policy() local
126 vers = maxvers; in selinux_mkload_policy()
129 selinux_binary_policy_path(), vers); in selinux_mkload_policy()
132 && --vers >= minvers) { in selinux_mkload_policy()
135 selinux_binary_policy_path(), vers); in selinux_mkload_policy()
161 if (vers > kernvers && usesepol) { in selinux_mkload_policy()
185 vers--; in selinux_mkload_policy()
/kernel/linux/linux-5.10/fs/nfsd/
H A Dnfssvc.c151 nfsd_support_version(int vers) in nfsd_support_version() argument
153 if (vers >= NFSD_MINVERS && vers < NFSD_NRVERS) in nfsd_support_version()
154 return nfsd_version[vers] != NULL; in nfsd_support_version()
161 bool *vers = kmalloc_array(NFSD_NRVERS, sizeof(bool), GFP_KERNEL); in nfsd_alloc_versions() local
164 if (vers) { in nfsd_alloc_versions()
167 vers[i] = nfsd_support_version(i); in nfsd_alloc_versions()
169 return vers; in nfsd_alloc_versions()
175 bool *vers = kmalloc_array(NFSD_SUPPORTED_MINOR_VERSION + 1, in nfsd_alloc_minorversions() local
179 if (vers) { in nfsd_alloc_minorversions()
207 nfsd_vers(struct nfsd_net *nn, int vers, enum vers_op change) nfsd_vers() argument
822 nfsd_support_acl_version(int vers) nfsd_support_acl_version() argument
[all...]
/kernel/linux/linux-6.6/fs/nfsd/
H A Dnfssvc.c151 nfsd_support_version(int vers) in nfsd_support_version() argument
153 if (vers >= NFSD_MINVERS && vers < NFSD_NRVERS) in nfsd_support_version()
154 return nfsd_version[vers] != NULL; in nfsd_support_version()
161 bool *vers = kmalloc_array(NFSD_NRVERS, sizeof(bool), GFP_KERNEL); in nfsd_alloc_versions() local
164 if (vers) { in nfsd_alloc_versions()
167 vers[i] = nfsd_support_version(i); in nfsd_alloc_versions()
169 return vers; in nfsd_alloc_versions()
175 bool *vers = kmalloc_array(NFSD_SUPPORTED_MINOR_VERSION + 1, in nfsd_alloc_minorversions() local
179 if (vers) { in nfsd_alloc_minorversions()
207 nfsd_vers(struct nfsd_net *nn, int vers, enum vers_op change) nfsd_vers() argument
838 nfsd_support_acl_version(int vers) nfsd_support_acl_version() argument
[all...]
/kernel/linux/linux-5.10/arch/mips/include/asm/mach-loongson64/
H A Dboot_param.h21 u16 vers; /* version of efi_memory_map */ member
55 u16 vers; /* version of efi_cpuinfo_loongson */ member
88 u16 vers; /* version of system_loongson */ member
105 u16 vers; member
124 u16 vers; /* version of the specificition */ member
150 u16 vers; /* version of this special */ member
168 u16 vers; /* version of smbios */ member
/kernel/linux/linux-6.6/arch/mips/include/asm/mach-loongson64/
H A Dboot_param.h25 u16 vers; /* version of efi_memory_map */ member
59 u16 vers; /* version of efi_cpuinfo_loongson */ member
92 u16 vers; /* version of system_loongson */ member
109 u16 vers; member
129 u16 vers; /* version of the specificition */ member
155 u16 vers; /* version of this special */ member
173 u16 vers; /* version of smbios */ member
/kernel/linux/linux-6.6/drivers/input/joystick/
H A Dqwiic-joystick.c65 struct qwiic_ver vers; in qwiic_probe() local
69 sizeof(vers), (u8 *)&vers); in qwiic_probe()
72 if (err != sizeof(vers)) in qwiic_probe()
76 vers.major, vers.minor); in qwiic_probe()
/third_party/selinux/libsepol/src/
H A Dpolicydb_public.c115 int sepol_policydb_set_vers(sepol_policydb_t * sp, unsigned int vers) in sepol_policydb_set_vers() argument
120 if (vers < POLICYDB_VERSION_MIN || vers > POLICYDB_VERSION_MAX) in sepol_policydb_set_vers()
125 if (vers < MOD_POLICYDB_VERSION_MIN in sepol_policydb_set_vers()
126 || vers > MOD_POLICYDB_VERSION_MAX) in sepol_policydb_set_vers()
132 p->policyvers = vers; in sepol_policydb_set_vers()
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dpj4-cp0.c111 int vers; in pj4_cp0_init() local
116 vers = pj4_get_iwmmxt_version(); in pj4_cp0_init()
117 if (vers < 0) in pj4_cp0_init()
126 pr_info("PJ4 iWMMXt v%d coprocessor enabled.\n", vers); in pj4_cp0_init()
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dpj4-cp0.c111 int vers; in pj4_cp0_init() local
116 vers = pj4_get_iwmmxt_version(); in pj4_cp0_init()
117 if (vers < 0) in pj4_cp0_init()
126 pr_info("PJ4 iWMMXt v%d coprocessor enabled.\n", vers); in pj4_cp0_init()
/third_party/ltp/lib/
H A Dtst_kvercmp.c169 int tst_kvercmp2(int r1, int r2, int r3, struct tst_kern_exv *vers) in tst_kvercmp2() argument
183 for (i = 0; vers[i].dist_name; i++) { in tst_kvercmp2()
184 if (!strcmp(vers[i].dist_name, cur_dist_name)) { in tst_kvercmp2()
187 return tst_kvexcmp(vers[i].extra_ver, kver); in tst_kvercmp2()
/third_party/libcoap/tests/
H A Dtest_tls.c68 const char *vers = dtls_package_version(); in t_tls2() local
70 if (vers) { in t_tls2()
74 p1 = strtol(vers, &endptr, 10); in t_tls2()
/third_party/rust/crates/regex/scripts/
H A Dscrape_crates_io.py61 for (name, vers) in iter_crates(crates_index):
65 with Crate(work_dir, name, vers) as c:
69 print((name, vers, r))
72 out.write("// {}-{}: {}\n".format(name, vers, r))
104 yield (crate_info["name"], crate_info["vers"])
/kernel/linux/linux-5.10/drivers/tee/
H A Dtee_core.c273 struct tee_ioctl_version_data vers; in tee_ioctl_version() local
275 ctx->teedev->desc->ops->get_version(ctx->teedev, &vers); in tee_ioctl_version()
278 vers.gen_caps |= TEE_GEN_CAP_PRIVILEGED; in tee_ioctl_version()
280 if (copy_to_user(uvers, &vers, sizeof(vers))) in tee_ioctl_version()
974 struct tee_ioctl_version_data vers; in implementation_id_show() local
976 teedev->desc->ops->get_version(teedev, &vers); in implementation_id_show()
977 return scnprintf(buf, PAGE_SIZE, "%d\n", vers.impl_id); in implementation_id_show()
1090 struct tee_ioctl_version_data *vers; member
1100 teedev->desc->ops->get_version(teedev, match_data->vers); in match_dev()
1105 tee_client_open_context(struct tee_context *start, int (*match)(struct tee_ioctl_version_data *, const void *), const void *data, struct tee_ioctl_version_data *vers) tee_client_open_context() argument
1153 tee_client_get_version(struct tee_context *ctx, struct tee_ioctl_version_data *vers) tee_client_get_version() argument
[all...]
/kernel/linux/linux-6.6/drivers/tee/
H A Dtee_core.c273 struct tee_ioctl_version_data vers; in tee_ioctl_version() local
275 ctx->teedev->desc->ops->get_version(ctx->teedev, &vers); in tee_ioctl_version()
278 vers.gen_caps |= TEE_GEN_CAP_PRIVILEGED; in tee_ioctl_version()
280 if (copy_to_user(uvers, &vers, sizeof(vers))) in tee_ioctl_version()
969 struct tee_ioctl_version_data vers; in implementation_id_show() local
971 teedev->desc->ops->get_version(teedev, &vers); in implementation_id_show()
972 return scnprintf(buf, PAGE_SIZE, "%d\n", vers.impl_id); in implementation_id_show()
1085 struct tee_ioctl_version_data *vers; member
1095 teedev->desc->ops->get_version(teedev, match_data->vers); in match_dev()
1100 tee_client_open_context(struct tee_context *start, int (*match)(struct tee_ioctl_version_data *, const void *), const void *data, struct tee_ioctl_version_data *vers) tee_client_open_context() argument
1148 tee_client_get_version(struct tee_context *ctx, struct tee_ioctl_version_data *vers) tee_client_get_version() argument
[all...]
/third_party/openssl/test/testutil/
H A Dprovider.c77 static int fips_provider_version(OSSL_LIB_CTX *libctx, FIPS_VERSION *vers) in fips_provider_version() argument
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3) in fips_provider_version()
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Dmodule_64.c239 static void dedotify_versions(struct modversion_info *vers, in dedotify_versions() argument
244 for (end = (void *)vers + size; vers < end; vers++) in dedotify_versions()
245 if (vers->name[0] == '.') { in dedotify_versions()
246 memmove(vers->name, vers->name+1, strlen(vers->name)); in dedotify_versions()
/kernel/linux/linux-5.10/drivers/media/cec/usb/pulse8/
H A Dpulse8-cec.c177 unsigned int vers; member
586 if (pulse8->vers < 10) { in pulse8_cec_adap_log_addr()
671 pulse8->vers = 0; in pulse8_setup()
677 pulse8->vers = (data[0] << 8) | data[1]; in pulse8_setup()
678 dev_info(pulse8->dev, "Firmware version %04x\n", pulse8->vers); in pulse8_setup()
679 if (pulse8->vers < 2) { in pulse8_setup()
700 if (pulse8->vers >= 10) { in pulse8_setup()
770 if (pulse8->vers < 10) { in pulse8_setup()
818 if (pulse8->vers < 2) in pulse8_ping_eeprom_work_handler()
/kernel/linux/linux-6.6/drivers/media/cec/usb/pulse8/
H A Dpulse8-cec.c177 unsigned int vers; member
586 if (pulse8->vers < 10) { in pulse8_cec_adap_log_addr()
671 pulse8->vers = 0; in pulse8_setup()
677 pulse8->vers = (data[0] << 8) | data[1]; in pulse8_setup()
678 dev_info(pulse8->dev, "Firmware version %04x\n", pulse8->vers); in pulse8_setup()
679 if (pulse8->vers < 2) { in pulse8_setup()
700 if (pulse8->vers >= 10) { in pulse8_setup()
770 if (pulse8->vers < 10) { in pulse8_setup()
818 if (pulse8->vers < 2) in pulse8_ping_eeprom_work_handler()

Completed in 16 milliseconds

12345678