Searched refs:path_buf (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/Libc-1044.1.2/sys/
H A Dposix_spawn.c86 char path_buf[PATH_MAX]; local
97 bp = path_buf;
124 if (lp + ln + 2 > sizeof(path_buf)) {
128 bcopy(p, path_buf, lp);
129 path_buf[lp] = '/';
130 bcopy(file, path_buf + lp + 1, ln);
131 path_buf[lp + ln + 1] = '\0';
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_queue.c327 static VSTRING *path_buf; local
343 path_buf = vstring_alloc(10);
403 mail_queue_path(path_buf, queue_name, STR(id_buf));
404 if (sane_rename(STR(temp_path), STR(path_buf)) == 0) /* success */
408 if (errno != ENOENT || mail_queue_mkdirs(STR(path_buf)) < 0) {
410 STR(temp_path), STR(path_buf));
414 STR(temp_path), STR(path_buf));
418 vstream_control(stream, VSTREAM_CTL_PATH, STR(path_buf), VSTREAM_CTL_END);
/macosx-10.10/postfix-255/postfix/src/smtpstone/
H A Dsmtp-sink.c414 static VSTRING *path_buf = 0; local
417 if (path_buf == 0)
418 path_buf = vstring_alloc(100);
420 VSTRING_RESET(path_buf);
422 while (strftime(STR(path_buf), vstring_avail(path_buf), template, lt) == 0)
423 VSTRING_SPACE(path_buf, vstring_avail(path_buf) + 100);
424 VSTRING_SKIP(path_buf);
425 return (path_buf);
444 VSTRING *path_buf; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/SharedWebCredential/
H A Dswcagent.m172 char path_buf[PROC_PIDPATHINFO_SIZE] = "";
176 if (proc_pidpath(pid, path_buf, sizeof(path_buf)) <= 0) {
182 size_t path_len = sizeof(path_buf);
183 if (responsibility_get_responsible_for_pid(pid, NULL, NULL, &path_len, path_buf) != 0) {
189 path_buf[sizeof(path_buf) - 1] = '\0';
191 if (!(client.path = [NSString stringWithUTF8String:path_buf]) ||
215 asl_log(NULL, NULL, ASL_LEVEL_NOTICE, "Refusing client without bundle identifier (%s)", path_buf);
/macosx-10.10/iodbc-42.5/iodbc/iodbcadm/gtk/
H A Ddsnchooser.c189 char *path_buf; local
191 char path_buf[MAXPATHLEN]; local
208 asprintf (&path_buf, "%s/%s", path, dir_entry->d_name);
210 snprintf (path_buf, sizeof (path_buf), "%s/%s",
213 STRCPY (path_buf, path);
215 STRCAT (path_buf, "/");
216 STRCAT (path_buf, dir_entry->d_name);
219 if (stat ((LPCSTR) path_buf, &fstat) >= 0
228 free (path_buf);
249 char *path_buf; local
251 char path_buf[MAXPATHLEN]; local
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dsftp.c1294 char path_buf[MAXPATHLEN]; local
1478 if (!getcwd(path_buf, sizeof(path_buf))) {
1483 printf("Local working directory: %s\n", path_buf);

Completed in 114 milliseconds