HomeSort by: relevance | last modified time | path
    Searched defs:environment (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++26/
text_encoding.cc 61 std::text_encoding::environment() function in class:std::text_encoding
  /src/sys/arch/arc/stand/boot/
boot.c 108 static char **environment; variable
164 environment = &argv[1];
205 * the environment
264 for (env = environment; env[0]; env++) {
  /src/external/bsd/kyua-cli/dist/store/
schema_inttest.cpp 78 std::map< std::string, std::string > environment; local
79 const engine::context context_1(root, environment);
97 std::map< std::string, std::string > environment; local
98 environment["HOME"] = "/home/test";
99 environment["PATH"] = "/bin:/usr/bin";
100 const engine::context context_2(root, environment);
233 std::map< std::string, std::string > environment; local
234 environment["PATH"] = "/bin:/usr/bin";
235 const engine::context context_3(root, environment);
352 std::map< std::string, std::string > environment; local
    [all...]
  /src/external/gpl2/gmake/dist/
job.h 46 char **environment; /* Environment for commands. */ member in struct:child
  /src/external/gpl2/groff/dist/src/include/
printer.h 43 struct environment { struct
68 void set_ascii_char(unsigned char c, const environment *env,
70 void set_special_char(const char *nm, const environment *env,
72 virtual void set_numbered_char(int n, const environment *env,
74 int set_char_and_width(const char *nm, const environment *env,
77 virtual void draw(int code, int *p, int np, const environment *env);
79 virtual void change_color(const environment * const env);
81 virtual void change_fill_color(const environment * const env);
86 virtual void special(char *arg, const environment *env,
88 virtual void devtag(char *arg, const environment *env
    [all...]
  /src/sys/arch/arc/arc/
machdep.c 150 char **environment; /* On some arches, pointer to environment */ variable
224 environment = &argv[1];
446 * Return a pointer to the given environment variable.
456 for (env = environment; env[0]; env++) {
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-base.h 114 /* The type of simulation environment (user/operating). */
115 enum sim_environment environment; member in struct:sim_state
116 #define STATE_ENVIRONMENT(sd) ((sd)->environment)
170 /* The program's environment. */
  /src/external/gpl3/gdb/dist/sim/common/
sim-base.h 114 /* The type of simulation environment (user/operating). */
115 enum sim_environment environment; member in struct:sim_state
116 #define STATE_ENVIRONMENT(sd) ((sd)->environment)
170 /* The program's environment. */
  /src/external/gpl3/gdb.old/dist/gdb/
inferior.h 594 /* Environment to use for running inferior,
596 gdb_environ environment;
595 gdb_environ environment; member in class:inferior
arch-utils.c 1507 core_file_exec_context::environment () const
1505 core_file_exec_context::environment () const function in class:core_file_exec_context
linux-tdep.c 1838 /* Try to extract the inferior arguments, environment, and executable name
1997 environment strings, and below that the null terminated list of
2000 environment list. */
2074 be pointing at the first environment string. */
2077 /* Parse the environment strings. */
2078 std::vector<gdb::unique_xmalloc_ptr<char>> environment; member in class:gdb
2084 environment.emplace_back (std::move (str));
2117 std::move (environment));
fbsd-tdep.c 1577 TAG (ENVC, _("Environment count"), AUXV_FORMAT_DEC);
1578 TAG (ENVV, _("Environment vector"), AUXV_FORMAT_HEX);
2365 /* Try to extract the inferior arguments, environment, and executable name
2401 /* Read AT_FREEBSD_ARGV, the address of the environment string vector. */
2445 std::vector<gdb::unique_xmalloc_ptr<char>> environment; member in class:gdb
2455 environment.emplace_back (std::move (str));
2462 std::move (environment));
  /src/external/gpl3/gdb/dist/gdb/
inferior.h 602 /* Environment to use for running inferior,
604 gdb_environ environment;
603 gdb_environ environment; member in class:inferior
arch-utils.c 1517 core_file_exec_context::environment () const
1515 core_file_exec_context::environment () const function in class:core_file_exec_context
linux-tdep.c 1817 /* Try to extract the inferior arguments, environment, and executable name
1976 environment strings, and below that the null terminated list of
1979 environment list. */
2053 be pointing at the first environment string. */
2056 /* Parse the environment strings. */
2057 std::vector<gdb::unique_xmalloc_ptr<char>> environment; member in class:gdb
2063 environment.emplace_back (std::move (str));
2096 std::move (environment));
fbsd-tdep.c 1565 TAG (ENVC, _("Environment count"), AUXV_FORMAT_DEC);
1566 TAG (ENVV, _("Environment vector"), AUXV_FORMAT_HEX);
2353 /* Try to extract the inferior arguments, environment, and executable name
2389 /* Read AT_FREEBSD_ARGV, the address of the environment string vector. */
2433 std::vector<gdb::unique_xmalloc_ptr<char>> environment; member in class:gdb
2443 environment.emplace_back (std::move (str));
2450 std::move (environment));
  /src/external/gpl2/groff/dist/src/roff/troff/
env.h 70 class environment;
72 hunits env_digit_width(environment *);
73 hunits env_space_width(environment *);
74 hunits env_sentence_space_width(environment *);
75 hunits env_narrow_space_width(environment *);
76 hunits env_half_narrow_space_width(environment *);
148 class environment { class
149 int dummy; // dummy environment used for \w
264 environment(symbol);
265 environment(const environment *); // for temporary environmen
    [all...]
env.cpp 47 environment *env;
49 env_list(environment *e, env_list *p) : env(e), next(p) {}
54 environment *env_table[NENVIRONMENTS];
56 environment *curenv;
85 friend void environment::mark_last_line();
86 friend void environment::output(node *, int, vunits, vunits, hunits, int);
125 void environment::output(node *nd, int no_fill_flag,
160 void environment::output_title(node *nd, int no_fill_flag,
171 void environment::output_pending_lines()
182 void environment::mark_last_line(
617 environment::environment(symbol nm) function in class:environment
705 environment::environment(const environment *e) function in class:environment
    [all...]
  /src/external/mit/libuv/dist/test/
test-spawn.c 240 * in the environment, but of course that doesn't work with
241 * the empty environment that we're testing here.
1237 char* environment[] = { local
1278 * required-environment variable: */
1290 /* copy expected additions to environment locally */
1308 result = make_program_env(environment, &env);
  /src/bin/sh/
var.c 206 * Initialize the variable symbol tables and import the environment
230 * Import variables from the environment, which will
240 * Set variables which override anything read from environment.
651 * Search the environment of a builtin command. If the second argument
691 environment(void) function
705 CTRACE(DBG_VARS, ("environment: %d vars to export\n", nenv));
716 VTRACE(DBG_VARS, ("environment: %s\n", ep[-1]));
1433 * used to create processes' environment, and (if exported) all
  /src/external/bsd/libevent/dist/
event.c 552 /** Return true iff 'method' is disabled according to the environment. */
556 char environment[64]; local
559 evutil_snprintf(environment, sizeof(environment), "EVENT_NO%s", name);
560 for (i = 8; environment[i] != '\0'; ++i)
561 environment[i] = EVUTIL_TOUPPER_(environment[i]);
562 /* Note that evutil_getenv_() ignores the environment entirely if
564 return (evutil_getenv_(environment) != NULL);
691 /* also obey the environment variables *
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/
event.c 550 /** Return true iff 'method' is disabled according to the environment. */
554 char environment[64]; local
557 evutil_snprintf(environment, sizeof(environment), "EVENT_NO%s", name);
558 for (i = 8; environment[i] != '\0'; ++i)
559 environment[i] = EVUTIL_TOUPPER_(environment[i]);
560 /* Note that evutil_getenv_() ignores the environment entirely if
562 return (evutil_getenv_(environment) != NULL);
689 /* also obey the environment variables *
    [all...]

Completed in 34 milliseconds