Home
last modified time | relevance | path

Searched refs:env (Results 1 – 25 of 231) sorted by relevance

12345678910

/f-stack/dpdk/examples/fips_validation/
H A Dmain.c51 } env; variable
120 if (!env.op) in cryptodev_fips_validate_app_int()
151 rte_cryptodev_sym_session_clear(env.dev_id, env.sess); in cryptodev_fips_validate_app_uninit()
357 (env.req_path != NULL && env.rsp_path == NULL)) { in cryptodev_fips_validate_parse_args()
363 if (env.req_path == NULL && env.self_test == 0) { in cryptodev_fips_validate_parse_args()
396 if (env.req_path == NULL || env.rsp_path == NULL) { in main()
404 ret = fips_test_init(env.req_path, env.rsp_path, in main()
609 rte_crypto_op_attach_sym_session(env.op, env.sess); in prepare_cipher_op()
658 rte_crypto_op_attach_sym_session(env.op, env.sess); in prepare_auth_op()
1140 memcpy(dst, env.digest, env.digest_len); in get_writeback_data()
[all …]
H A Dfips_dev_self_test.c1474 env->op->sym->m_src = env->mbuf; in run_single_test()
1494 ret = test_ops->prepare_op(env->op, env->mbuf, sess, dir, vec); in run_single_test()
1532 if (env->mbuf) in fips_dev_auto_test_uninit()
1534 if (env->op) in fips_dev_auto_test_uninit()
1536 if (env->mpool) in fips_dev_auto_test_uninit()
1538 if (env->op_pool) in fips_dev_auto_test_uninit()
1577 memset(env, 0, sizeof(*env)); in fips_dev_auto_test_init()
1629 env->mbuf = rte_pktmbuf_alloc(env->mpool); in fips_dev_auto_test_init()
1630 if (!env->mbuf) { in fips_dev_auto_test_init()
1635 env->op = rte_crypto_op_alloc(env->op_pool, in fips_dev_auto_test_init()
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A D.travis.yml7env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
9env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
11env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bo…
13env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
19env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
21env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-a…
23env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno…
33env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bo…
35env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
37env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libzutil/
H A Dzutil_device_path.c44 char *dir, *env, *envdup; in zfs_resolve_shortname() local
46 env = getenv("ZPOOL_IMPORT_PATH"); in zfs_resolve_shortname()
49 if (env) { in zfs_resolve_shortname()
50 envdup = strdup(env); in zfs_resolve_shortname()
85 char *dir, *env, *envdup = NULL; in zfs_strcmp_shortname() local
93 env = getenv("ZPOOL_IMPORT_PATH"); in zfs_strcmp_shortname()
95 if (env) { in zfs_strcmp_shortname()
96 envdup = strdup(env); in zfs_strcmp_shortname()
104 if (env) { in zfs_strcmp_shortname()
118 if (env) { in zfs_strcmp_shortname()
[all …]
/f-stack/dpdk/app/test/
H A Dtest_power.c30 enum power_management_env env = rte_power_get_env(); in check_function_ptrs() local
32 const bool not_null_expected = !(env == PM_ENV_NOT_SET); in check_function_ptrs()
111 enum power_management_env env; in test_power() local
121 env = rte_power_get_env(); in test_power()
122 if (env != PM_ENV_NOT_SET) { in test_power()
149 env = rte_power_get_env(); in test_power()
150 if (env != envs[i]) { in test_power()
H A Dtest_power_kvm_vm.c33 enum power_management_env env; in test_power_kvm_vm() local
42 env = rte_power_get_env(); in test_power_kvm_vm()
43 if (env != PM_ENV_KVM_VM) { in test_power_kvm_vm()
H A Dtest_power_cpufreq.c426 enum power_management_env env; in test_power_cpufreq() local
441 env = rte_power_get_env(); in test_power_cpufreq()
442 if ((env != PM_ENV_ACPI_CPUFREQ) && (env != PM_ENV_PSTATE_CPUFREQ)) { in test_power_cpufreq()
/f-stack/dpdk/lib/librte_power/
H A Drte_power.c48 rte_power_check_env_supported(enum power_management_env env) in rte_power_check_env_supported() argument
50 switch (env) { in rte_power_check_env_supported()
64 rte_power_set_env(enum power_management_env env) in rte_power_set_env() argument
76 if (env == PM_ENV_ACPI_CPUFREQ) { in rte_power_set_env()
88 } else if (env == PM_ENV_KVM_VM) { in rte_power_set_env()
100 } else if (env == PM_ENV_PSTATE_CPUFREQ) { in rte_power_set_env()
115 env); in rte_power_set_env()
120 global_default_env = env; in rte_power_set_env()
H A Drte_power.h42 int rte_power_check_env_supported(enum power_management_env env);
57 int rte_power_set_env(enum power_management_env env);
/f-stack/freebsd/contrib/openzfs/udev/rules.d/
H A D69-vdev.rules.in8 KERNEL=="*[!0-9]", ENV{SUBSYSTEM}=="block", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}"
9 …", ENV{SUBSYSTEM}=="block", ENV{DEVTYPE}=="disk", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}"
10 …YSTEM}=="block", ENV{DEVTYPE}=="partition", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}-part%…
11 KERNEL=="dm-[0-9]*", ENV{SUBSYSTEM}=="block", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}"
15 ENV{SUBSYSTEM}=="scsi_generic", ENV{ID_ENCLOSURE}=="?*", SYMLINK+="$env{ID_ENCLOSURE_PATH}"
/f-stack/freebsd/contrib/openzfs/lib/libspl/os/linux/
H A Dgethostid.c37 char *env; in get_spl_hostid() local
42 env = getenv("ZFS_HOSTID"); in get_spl_hostid()
43 if (env) { in get_spl_hostid()
44 hostid = strtoull(env, NULL, 0); in get_spl_hostid()
/f-stack/app/nginx-1.16.1/src/core/
H A Dnginx.c630 env[n] = NULL; in ngx_set_environment()
634 environ = env; in ngx_set_environment()
637 return env; in ngx_set_environment()
644 char **env = data; in ngx_cleanup_environment() local
656 ngx_free(env); in ngx_cleanup_environment()
679 if (env == NULL) { in ngx_exec_new_binary()
687 ngx_free(env); in ngx_exec_new_binary()
700 env[n++] = var; in ngx_exec_new_binary()
714 env[n] = NULL; in ngx_exec_new_binary()
735 ngx_free(env); in ngx_exec_new_binary()
[all …]
/f-stack/freebsd/arm64/arm64/
H A Dcpu_errata.c123 char *env; in install_ssbd_workaround() local
126 env = kern_getenv("kern.cfg.ssbd"); in install_ssbd_workaround()
127 if (env != NULL) { in install_ssbd_workaround()
128 if (strcmp(env, "force-on") == 0) { in install_ssbd_workaround()
130 } else if (strcmp(env, "force-off") == 0) { in install_ssbd_workaround()
/f-stack/freebsd/contrib/openzfs/cmd/zpool/
H A Dzpool_iter.c495 rc = asprintf(&env[1], "VDEV_PATH=%s", in vdev_run_cmd()
527 for (i = 1; i < ARRAY_SIZE(env); i++) in vdev_run_cmd()
528 if (env[i] != NULL) in vdev_run_cmd()
529 free(env[i]); in vdev_run_cmd()
539 const char *env; in zpool_get_cmd_search_path() local
542 env = getenv("ZPOOL_SCRIPTS_PATH"); in zpool_get_cmd_search_path()
543 if (env != NULL) in zpool_get_cmd_search_path()
544 return (strdup(env)); in zpool_get_cmd_search_path()
546 env = getenv("HOME"); in zpool_get_cmd_search_path()
547 if (env != NULL) { in zpool_get_cmd_search_path()
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libzutil/os/linux/
H A Dzutil_import_os.c191 char *env = NULL; in zpool_open_func() local
200 env = getenv("ZPOOL_IMPORT_UDEV_TIMEOUT_MS"); in zpool_open_func()
201 if ((env == NULL) || sscanf(env, "%d", &timeout) != 1 || in zpool_open_func()
288 char *dir, *env, *envdup; in zfs_path_order() local
290 env = getenv("ZPOOL_IMPORT_PATH"); in zfs_path_order()
291 if (env) { in zfs_path_order()
292 envdup = strdup(env); in zfs_path_order()
804 char *env, *type, *path; in update_vdev_config_dev_strs() local
828 env = getenv("ZFS_VDEV_DEVID_OPT_OUT"); in update_vdev_config_dev_strs()
829 if (env && (strtoul(env, NULL, 0) > 0 || in update_vdev_config_dev_strs()
[all …]
/f-stack/freebsd/contrib/openzfs/contrib/dracut/90zfs/
H A Dmodule-setup.sh.in105 inst "${moddir}"/zfs-env-bootfs.service "${systemdsystemunitdir}"/zfs-env-bootfs.service
106 …ln -s ../zfs-env-bootfs.service "${initdir}/${systemdsystemunitdir}/zfs-import.target.wants"/zfs-e…
107 type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-env-bootfs.service
/f-stack/app/redis-5.0.5/deps/hiredis/
H A D.travis.yml25 env:
34 env: PRE="valgrind --track-origins=yes --leak-check=full"
37env: TARGET="32bit" TARGET_VARS="32bit-vars" PRE="valgrind --track-origins=yes --leak-check=full"
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dopenbmc-flash-layout.dtsi13 u-boot-env@60000 {
15 label = "u-boot-env";
H A Dopenbmc-flash-layout-128.dtsi13 u-boot-env@e0000 {
15 label = "u-boot-env";
H A Dfacebook-bmc-flash-layout.dtsi14 u-boot-env@60000 {
16 label = "env";
H A Dpicoxcell-pc7302-pc3x2.dts56 boot-env@300000 {
61 redundant-boot-env@320000 {
H A Dpicoxcell-pc7302-pc3x3.dts62 boot-env@300000 {
67 redundant-boot-env@320000 {
/f-stack/freebsd/mips/conf/
H A DAP135.hints118 …rootfstype=jffs2 init=/sbin/init mtdparts=ath-nor0:256k(u-boot),64k(u-boot-env),6336k(rootfs),1408…
124 # 256KB uboot, 64KB uboot-env, 6336KB rootfs, 1344KB kernel, 64KB cfg, 8256MB mib0, 64KB ART
128 # 256KB uboot, 64KB uboot-env, 2048MB kernel, 6144MB rootfs, 7644KB mib0, 64KB cfg, 64KB ART
129 # .. and then you change the boot env to be:
139 # 64KiB u-boot-env
142 hint.map.1.end=0x00050000 # 64k u-boot-env
143 hint.map.1.name="u-boot-env"
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_util.c913 if (env == NULL) in libzfs_run_process_impl()
916 execve(path, argv, env); in libzfs_run_process_impl()
918 if (env == NULL) in libzfs_run_process_impl()
921 execvpe(path, argv, env); in libzfs_run_process_impl()
969 char *env[], char **lines[], int *lines_cnt) in libzfs_run_process_get_stdout_nopath() argument
997 char *env = getenv(envvar); in libzfs_envvar_is_set() local
998 if (env && (strtoul(env, NULL, 0) > 0 || in libzfs_envvar_is_set()
999 (!strncasecmp(env, "YES", 3) && strnlen(env, 4) == 3) || in libzfs_envvar_is_set()
1000 (!strncasecmp(env, "ON", 2) && strnlen(env, 3) == 2))) in libzfs_envvar_is_set()
1011 char *env; local
[all …]
/f-stack/freebsd/contrib/openzfs/cmd/zed/
H A Dzed_exec.c82 char *env[], int zfd) in _zed_exec_fork_child() argument
93 assert(env != NULL); in _zed_exec_fork_child()
118 execle(path, prog, NULL, env); in _zed_exec_fork_child()

12345678910