Searched refs:env (Results 1 - 25 of 324) sorted by relevance

1234567891011>>

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.coverage.exe29 while true; do env > /dev/null; done
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Denv.c35 RCSID("$Id: env.c 22349 2007-12-26 19:32:49Z lha $");
55 * @param env return a hx509_env structure, free with hx509_env_free().
63 hx509_env_init(hx509_context context, hx509_env *env) argument
65 *env = calloc(1, sizeof(**env));
66 if (*env == NULL) {
77 * @param env enviroment to add the enviroment variable too.
87 hx509_env_add(hx509_context context, hx509_env env, argument
92 ptr = realloc(env->val, sizeof(env
127 hx509_env_lfind(hx509_context context, hx509_env env, const char *key, size_t len) argument
149 hx509_env_free(hx509_env *env) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libgomp/
H A Denv.c51 char *env, *end; local
54 env = getenv ("OMP_SCHEDULE");
55 if (env == NULL)
58 while (isspace ((unsigned char) *env))
59 ++env;
60 if (strncasecmp (env, "static", 6) == 0)
63 env += 6;
65 else if (strncasecmp (env, "dynamic", 7) == 0)
68 env += 7;
70 else if (strncasecmp (env, "guide
118 char *env, *end; local
154 const char *env; local
[all...]
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_free_envlist.c49 char **env; local
54 for (env = envlist; *env != NULL; ++env)
55 FREE(*env);
H A Dpam_putenv.c60 char **env, *p; local
75 FREE(pamh->env[i]);
76 pamh->env[i] = p;
82 env = realloc(pamh->env,
84 if (env == NULL)
86 pamh->env = env;
91 if ((pamh->env[pamh->env_count] = strdup(namevalue)) == NULL)
H A Dpam_setenv.c64 char *env; local
80 if (asprintf(&env, "%s=%s", name, value) < 0)
82 r = pam_putenv(pamh, env);
83 FREE(env);
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_env.c50 int uwx_init_history(struct uwx_env *env) argument
54 if (env == 0)
58 env->history.special[i] = UWX_DISP_REG(i);;
60 env->history.gr[i] = UWX_DISP_REG(UWX_REG_GR(4+i));
62 env->history.br[i] = UWX_DISP_REG(UWX_REG_BR(1+i));
64 env->history.fr[i] = UWX_DISP_REG(UWX_REG_FR(2+i));
66 env->history.fr[i] = UWX_DISP_REG(UWX_REG_FR(12+i));
71 int uwx_init_env(struct uwx_env *env, size_t total_size) argument
77 str_pool = (struct uwx_str_pool *)(env + 1);
84 env
137 uwx_set_nofr(struct uwx_env *env) argument
148 struct uwx_env *env; local
166 uwx_set_remote(struct uwx_env *env, int is_big_endian_target) argument
187 uwx_register_callbacks( struct uwx_env *env, intptr_t tok, copyin_cb copyin, lookupip_cb lookupip) argument
201 uwx_get_abi_context_code(struct uwx_env *env) argument
208 uwx_free(struct uwx_env *env) argument
[all...]
H A Duwx_str.h34 extern int uwx_init_str_pool(struct uwx_env *env, struct uwx_str_pool *pool);
35 extern void uwx_free_str_pool(struct uwx_env *env);
36 extern char *uwx_alloc_str(struct uwx_env *env, char *str);
37 extern void uwx_reset_str_pool(struct uwx_env *env);
H A Duwx_step.c46 int uwx_decode_uvec(struct uwx_env *env, uint64_t *uvec, uint64_t **rstate);
47 int uwx_restore_reg(struct uwx_env *env, uint64_t rstate,
49 int uwx_restore_freg(struct uwx_env *env, uint64_t rstate,
51 int uwx_restore_nat(struct uwx_env *env, uint64_t rstate, int unat);
69 int uwx_get_frame_info(struct uwx_env *env) argument
81 if (env->copyin == 0 || env->lookupip == 0)
84 env->ptr_size = DWORDSZ;
85 env->code_start = 0;
86 env
256 uwx_restore_markers(struct uwx_env *env) argument
311 uwx_get_module_info( struct uwx_env *env, char **modp, uint64_t *text_base) argument
379 uwx_get_funcstart( struct uwx_env *env, uint64_t *funcstart) argument
406 uwx_get_sym_info( struct uwx_env *env, char **modp, char **symp, uint64_t *offsetp) argument
474 uwx_step(struct uwx_env *env) argument
670 uwx_decode_uvec(struct uwx_env *env, uint64_t *uvec, uint64_t **rstate) argument
716 uwx_restore_reg(struct uwx_env *env, uint64_t rstate, uint64_t *valp, uint64_t *histp) argument
766 uwx_restore_freg(struct uwx_env *env, uint64_t rstate, uint64_t *valp, uint64_t *histp) argument
804 uwx_restore_nat(struct uwx_env *env, uint64_t rstate, int unat) argument
[all...]
H A Duwx_symbols.h29 struct uwx_env *env,
37 struct uwx_env *env,
H A Duwx_scoreboard.c61 void uwx_prealloc_scoreboard(struct uwx_env *env, struct uwx_scoreboard *sb) argument
63 sb->id = env->nscoreboards++;
64 sb->nextused = env->used_scoreboards;
66 env->used_scoreboards = sb;
70 struct uwx_scoreboard *uwx_alloc_scoreboard(struct uwx_env *env) argument
75 if (env->free_scoreboards != 0) {
76 sb = env->free_scoreboards;
77 env->free_scoreboards = sb->nextfree;
81 if (env->allocate_cb == 0)
86 (*env
109 uwx_reclaim_scoreboards(struct uwx_env *env) argument
121 uwx_init_scoreboards(struct uwx_env *env) argument
130 uwx_new_scoreboard( struct uwx_env *env, struct uwx_scoreboard *prevsb) argument
146 uwx_pop_scoreboards( struct uwx_env *env, struct uwx_scoreboard *sb, int ecount) argument
167 uwx_label_scoreboard( struct uwx_env *env, struct uwx_scoreboard *sb, int label) argument
218 uwx_copy_scoreboard( struct uwx_env *env, struct uwx_scoreboard *sb, int label) argument
296 uwx_free_scoreboards(struct uwx_env *env) argument
[all...]
H A Duwx_uinfo.h28 struct uwx_env *env,
33 struct uwx_env *env,
50 struct uwx_env *env,
55 struct uwx_env *env,
62 struct uwx_env *env,
H A Duwx_context.c31 struct uwx_env *env,
39 if (env == 0)
42 env->context.special[UWX_REG_IP] = ip;
43 env->context.special[UWX_REG_SP] = sp;
44 env->context.special[UWX_REG_BSP] = bsp;
45 env->context.special[UWX_REG_CFM] = cfm;
47 env->context.special[i] = 0;
49 env->context.gr[i] = 0;
50 env->context.valid_regs = VALID_BASIC4;
51 env
30 uwx_init_context( struct uwx_env *env, uint64_t ip, uint64_t sp, uint64_t bsp, uint64_t cfm) argument
57 uwx_get_reg(struct uwx_env *env, int regid, uint64_t *valp) argument
150 uwx_get_nat(struct uwx_env *env, int regid, int *natp) argument
196 uwx_get_spill_loc(struct uwx_env *env, int regid, uint64_t *dispp) argument
248 uwx_set_reg(struct uwx_env *env, int regid, uint64_t val) argument
282 uwx_set_fr(struct uwx_env *env, int regid, uint64_t *val) argument
[all...]
H A Duwx_str.c53 int uwx_init_str_pool(struct uwx_env *env, struct uwx_str_pool *pool) argument
62 env->string_pool = pool;
67 void uwx_free_str_pool(struct uwx_env *env) argument
73 pool = env->string_pool;
78 if (env->free_cb == 0)
81 (*env->free_cb)(pool);
85 char *uwx_alloc_str(struct uwx_env *env, char *str) argument
95 for (pool = env->string_pool; pool != 0; pool = pool->next) {
105 if (env->allocate_cb == 0)
108 pool = (struct uwx_str_pool *) (*env
122 uwx_reset_str_pool(struct uwx_env *env) argument
[all...]
H A Duwx.h59 __EXTERN_C int uwx_free(struct uwx_env *env);
62 __EXTERN_C int uwx_set_remote(struct uwx_env *env, int is_big_endian_target);
65 __EXTERN_C int uwx_set_nofr(struct uwx_env *env);
84 struct uwx_env *env, /* unwind environment */
91 struct uwx_env *env, /* unwind environment */
99 struct uwx_env *env, /* unwind environment */
105 struct uwx_env *env, /* unwind environment */
111 __EXTERN_C int uwx_init_history(struct uwx_env *env);
114 __EXTERN_C int uwx_step(struct uwx_env *env);
118 struct uwx_env *env, /* unwin
412 struct uwx_env *env; member in class:UnwindExpress
[all...]
/freebsd-9.3-release/usr.bin/env/
H A DMakefile4 PROG= env
5 SRCS= env.c envopts.c
/freebsd-9.3-release/contrib/libstdc++/include/c/
H A Dstd_csetjmp.h46 #define setjmp(env) std::setjmp (env)
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Denvironment.c45 /* find assignment in env list; len is length of variable including
50 find_var(char **env, char *assignment, size_t len) argument
53 for(i = 0; env != NULL && env[i] != NULL; i++)
54 if(strncmp(env[i], assignment, len) == 0)
61 * assigned and list of malloced strings in env, return 0 or errno
66 rk_read_env_file(FILE *F, char ***env, int *assigned) argument
77 for(idx = 0; *env != NULL && (*env)[idx] != NULL; idx++);
78 l = *env;
134 read_environment(const char *file, char ***env) argument
148 free_environment(char **env) argument
[all...]
/freebsd-9.3-release/tools/regression/bin/sh/
H A DMakefile7 env SH=${SH} ${SH} regress.sh
/freebsd-9.3-release/contrib/gcc/
H A Dipa-utils.c79 has been customized for cgraph_nodes. The env parameter is because
82 ipa_utils_reduced_inorder. ENV is a stack env and would be
87 searchc (struct searchc_env* env, struct cgraph_node *v)
94 splay_tree_remove (env->nodes_marked_new, v->uid);
96 v_info->dfn_number = env->count;
97 v_info->low_link = env->count;
98 env->count++;
99 env->stack[(env->stack_size)++] = v;
114 searchc (env,
86 searchc(struct searchc_env* env, struct cgraph_node *v) argument
162 struct searchc_env env; local
[all...]
/freebsd-9.3-release/bin/kenv/
H A Dkenv.c63 char *env, *eq, *val; local
68 env = NULL;
93 env = argv[0];
94 eq = strchr(env, '=');
102 if ((hflag || Nflag) && env != NULL)
104 if (argc > 0 || ((uflag || vflag) && env == NULL))
106 if (env == NULL) {
112 error = kunsetenv(env);
114 warnx("unable to unset %s", env);
116 error = kgetenv(env);
173 kgetenv(const char *env) argument
189 ksetenv(const char *env, char *val) argument
200 kunsetenv(const char *env) argument
[all...]
/freebsd-9.3-release/contrib/groff/src/include/
H A Dprinter.h66 void set_ascii_char(unsigned char c, const environment *env,
68 void set_special_char(const char *nm, const environment *env,
70 virtual void set_numbered_char(int n, const environment *env,
72 int set_char_and_width(const char *nm, const environment *env,
75 virtual void draw(int code, int *p, int np, const environment *env);
77 virtual void change_color(const environment * const env);
79 virtual void change_fill_color(const environment * const env);
84 virtual void special(char *arg, const environment *env,
86 virtual void devtag(char *arg, const environment *env,
103 virtual void set_char(int index, font *f, const environment *env,
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Denv.c35 RCSID("$Id: env.c 8476 2000-06-28 12:27:38Z joda $");
41 char **env; variable
47 env = realloc(env, (num_env + 1) * sizeof(*env));
48 if(env == NULL)
50 env[num_env++] = str;
62 if(strncmp(env[i], var, strlen(var)) == 0 &&
63 env[i][strlen(var)] == '='){
64 free(env[
[all...]
/freebsd-9.3-release/lib/msun/src/
H A Ds_lrint.c49 fenv_t env; local
52 feholdexcept(&env);
56 feupdateenv(&env);
H A Ds_nearbyint.c45 fenv_t env; \
47 fegetenv(&env); \
49 fesetenv(&env); \

Completed in 168 milliseconds

1234567891011>>