Home
last modified time | relevance | path

Searched refs:where_args (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/usr.sbin/pkg_install/create/
Dpl.c120 strcat(where_args, "|/usr/bin/tar xpf -"); \
121 if (system(where_args)) { \
125 memset(where_args, 0, maxargs); \
127 strcpy(where_args, STARTSTRING); \
141 char *where_args, *prefix = NULL; in copy_plist() local
153 where_args = malloc(maxargs); in copy_plist()
154 if (!where_args) { in copy_plist()
159 memset(where_args, 0, maxargs); in copy_plist()
160 strcpy(where_args, STARTSTRING); in copy_plist()
212 add_count = snprintf(&where_args[where_count], in copy_plist()
[all …]
/freebsd-9-stable/usr.sbin/pkg_install/add/
Dextract.c37 strcat(where_args, "|/usr/bin/tar --unlink -xpPf - -C "); \
38 strcat(where_args, todir); \
39 if (system(where_args)) { \
42 __func__, (long)strlen(where_args), where_args); \
44 strcpy(where_args, STARTSTRING); \
112 char *where_args, *perm_args, *last_chdir; in extract_plist() local
118 where_args = alloca(maxargs); in extract_plist()
119 if (!where_args) { in extract_plist()
129 strcpy(where_args, STARTSTRING); in extract_plist()
204 add_count = add_arg(&where_args[where_count], maxargs - where_count, p->name); in extract_plist()