Searched refs:make_state (Results 1 - 10 of 10) sorted by relevance
/illumos-gate/usr/src/cmd/make/bin/ |
H A D | dosys.cc | 115 make_state->stat.time = file_no_time; 116 (void)exists(make_state); 117 before = make_state->stat.time; 143 make_state->stat.time = file_no_time; 144 (void)exists(make_state); 145 if (before == make_state->stat.time) { 153 (void) read_simple_file(make_state,
|
H A D | state.cc | 114 * make_state The Name ".make.state", used for opening file 148 make_state_lockfile = getmem(strlen(make_state->string_mb) + strlen(".lock") + 1); 151 make_state->string_mb); 152 if (lock_err = file_lock(make_state->string_mb, 184 make_state->string_mb); 360 if (unlink(make_state->string_mb) != 0 && errno != ENOENT) { 369 make_state->string_mb, 372 if (rename(make_state_tempfile, make_state->string_mb) != 0) { 382 make_state->string_mb,
|
H A D | globals.cc | 104 Name make_state; variable
|
H A D | main.cc | 525 if ((slash_ptr = strrchr(make_state->string_mb, (int) slash_char)) == NULL) { 529 (void) strcpy(make_state_dir, make_state->string_mb); 1730 * make_state The Name ".make.state", used to read file 2331 /* just in case macro references are used in make_state file 2335 expand_value(make_state, &dest, false); 2337 make_state = GETNAME(dest.buffer.start, FIND_LENGTH); 2339 if(!stat(make_state->string_mb, &make_state_stat)) { 2341 /* copy the make_state structure to the other 2342 ** and then let make_state point to the new 2345 memcpy(&state_filename, make_state,sizeo [all...] |
H A D | parallel.cc | 1847 make_state->stat.time = file_no_time; 1848 (void) exists(make_state); 1849 if (make_state_before == make_state->stat.time) { 1857 (void) read_simple_file(make_state,
|
H A D | doname.cc | 1558 * make_state The Name ".make.state", used to check timestamp 1629 (void) exists(make_state); 2022 * make_state Make state file name 2030 timestruc_t previous = make_state->stat.time; 2034 make_state->stat.time = file_no_time; 2035 if ((exists(make_state) == file_doesnt_exist) || 2036 (make_state->stat.time == previous)) { 2042 makefile = maybe_append_prop(make_state, makefile_prop); 2051 (void) read_simple_file(make_state,
|
H A D | read.cc | 208 make_state_lockfile = getmem(strlen(make_state->string_mb) + strlen(".lock") + 1); 211 make_state->string_mb); 212 (void) file_lock(make_state->string_mb,
|
H A D | read2.cc | 1238 if((!make_state) ||(!strcmp(make_state->string_mb,".make.state"))) { 1239 make_state = depes->names[0];
|
H A D | misc.cc | 600 make_state = GETNAME(wcs_buffer, FIND_LENGTH);
|
/illumos-gate/usr/src/cmd/make/include/mk/ |
H A D | defs.h | 223 extern Name make_state;
|
Completed in 89 milliseconds