Home
last modified time | relevance | path

Searched refs:path_buf (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dmail_queue.c329 static VSTRING *path_buf; in mail_queue_enter() local
345 path_buf = vstring_alloc(10); in mail_queue_enter()
405 mail_queue_path(path_buf, queue_name, STR(id_buf)); in mail_queue_enter()
406 if (sane_rename(STR(temp_path), STR(path_buf)) == 0) /* success */ in mail_queue_enter()
410 if (errno != ENOENT || mail_queue_mkdirs(STR(path_buf)) < 0) { in mail_queue_enter()
412 STR(temp_path), STR(path_buf)); in mail_queue_enter()
416 STR(temp_path), STR(path_buf)); in mail_queue_enter()
420 vstream_control(stream, CA_VSTREAM_CTL_PATH(STR(path_buf)), CA_VSTREAM_CTL_END); in mail_queue_enter()
/netbsd-src/external/ibm-public/postfix/dist/src/smtpstone/
H A Dsmtp-sink.c430 static VSTRING *path_buf = 0; in exp_path_template() local
433 if (path_buf == 0) in exp_path_template()
434 path_buf = vstring_alloc(100); in exp_path_template()
436 VSTRING_RESET(path_buf); in exp_path_template()
438 while (strftime(STR(path_buf), vstring_avail(path_buf), template, lt) == 0) in exp_path_template()
439 VSTRING_SPACE(path_buf, vstring_avail(path_buf) + 100); in exp_path_template()
440 VSTRING_SKIP(path_buf); in exp_path_template()
441 return (path_buf); in exp_path_template()
460 VSTRING *path_buf; in mail_file_open() local
472 path_buf = exp_path_template(single_template, state->start_time); in mail_file_open()
[all …]
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dfs.c2390 WCHAR* path_buf; in fs__create_junction() local
2421 path_buf = (WCHAR*)&(buffer->MountPointReparseBuffer.PathBuffer); in fs__create_junction()
2427 wcsncpy((WCHAR*)&path_buf[path_buf_len], JUNCTION_PREFIX, in fs__create_junction()
2439 path_buf[path_buf_len++] = L'\\'; in fs__create_junction()
2443 path_buf[path_buf_len++] = path[i]; in fs__create_junction()
2445 path_buf[path_buf_len++] = L'\\'; in fs__create_junction()
2453 path_buf[path_buf_len++] = L'\0'; in fs__create_junction()
2465 path_buf[path_buf_len++] = L'\\'; in fs__create_junction()
2469 path_buf[path_buf_len++] = path[i]; in fs__create_junction()
2473 path_buf[path_buf_len++] = L'\\'; in fs__create_junction()
[all …]
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dsftp.c1574 char path_buf[PATH_MAX]; in parse_dispatch_command() local
1800 if (!getcwd(path_buf, sizeof(path_buf))) { in parse_dispatch_command()
1805 mprintf("Local working directory: %s\n", path_buf); in parse_dispatch_command()