Lines Matching full:variables
2 * kmp_environment.cpp -- Handle environment variables OS-independently.
14 act of loading a DLL on Windows* OS makes any user-set environment variables
16 the env variables as they existed at the start of the run. JH 12/23/2002
27 getenv() function search for variables in C RTL environment only.
40 1. Set variables with putenv() function -- both C and Windows* OS on IA-32
44 2. Get variables with GetEnvironmentVariable() -- getenv() does not
45 search Windows* OS on IA-32 architecture, and can not see variables
101 variables (i.e. with putenv()) unavailable. getenv() apparently gets a
102 clean copy of the env variables as they existed at the start of the run.
178 // Dead code. I tried to put too many variables into Linux* OS
227 characters, variables are separated with vertical bars, e. g.:
231 Empty variables are allowed and ignored:
253 // number of variables is number of delimiters plus one).
269 // Loop thru all the variables.
295 environment variables. Each variable is terminated with zero byte, entire
320 // Loop thru all the vars in environment block. Count variables, find size
373 /* Unix environment block is a array of pointers to variables, last pointer in
389 // Count number of variables and length of required bulk.
464 kmp_env_blk_t *block // M: Block of environment variables to sort.
474 kmp_env_blk_t *block // M: Block of environment variables to free.
486 __kmp_env_blk_var(kmp_env_blk_t *block, // I: Block of environment variables.