Searched defs:files (Results 1 - 25 of 46) sorted by relevance

12

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/include/krb5/
H A Dk5-plugin.h74 struct plugin_file_handle **files; member in struct:plugin_dir_handle
76 #define PLUGIN_DIR_INIT(P) ((P)->files = NULL)
77 #define PLUGIN_DIR_OPEN(P) ((P)->files != NULL)
/illumos-gate/usr/src/lib/print/libipp-listener/common/
H A Dvalidate-job.c47 char *files[] = { "/etc/syslog.conf", NULL }; local
90 status = papiJobValidate(svc, queue, job_attributes, NULL, files, &j);
/illumos-gate/usr/src/boot/lib/libstand/
H A Dopen.c70 struct open_file files[SOPEN_MAX]; variable in typeref:struct:open_file
78 if (files[fd].f_flags == 0)
104 f = &files[fd];
/illumos-gate/usr/src/cmd/tail/
H A Dtail.c47 file_info_t *files; variable
160 files = (struct file_info *)malloc(no_files *
162 if (!files)
165 for (file = files; (fn = *argv++); file++) {
179 follow(files, style, off);
180 for (i = 0, file = files; i < no_files; i++, file++) {
183 free(files);
H A Dforward.c61 static void set_events(file_info_t *files);
77 * files, by bytes or lines and from the beginning or end of the file.
366 set_events(file_info_t *files) argument
371 for (i = 0, file = files; i < no_files; i++, file++) {
386 follow(file_info_t *files, enum STYLE style, off_t off) argument
394 /* Position each of the files */
396 file = files;
422 set_events(files);
427 for (i = 0, file = files; i < no_files; i++, file++) {
469 for (i = 0, file = files;
[all...]
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/
H A Djob.c43 * must copy files before leaving routine
47 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job)
54 if ((svc == NULL) || (name == NULL) || (files == NULL) ||
74 if ((files != NULL) && (files[0] != NULL))
76 "job-name", files[0]);
82 if ((status = lpd_job_add_files(svc, attributes, files, &metadata,
99 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job)
102 job_ticket, files, job));
141 char *files[] local
46 papiJobSubmit(papi_service_t handle, char *name, papi_attribute_t **attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
97 papiJobSubmitByReference(papi_service_t handle, char *name, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
200 char *files[2]; local
[all...]
H A Dlpd-job.c483 char **files, char **metadata, papi_attribute_t ***used)
491 if ((svc == NULL) || (attributes == NULL) || (files == NULL) ||
514 for (i = 0; files[i] != NULL; i++) {
520 if ((strcmp("standard input", files[i]) != 0) &&
521 (access(files[i], R_OK) < 0)) {
523 files[i], strerror(errno));
526 if (strcmp("standard input", files[i]) != 0) {
527 if (stat(files[i], &statbuf) < 0) {
530 files[i], strerror(errno));
536 files[
482 lpd_job_add_files(service_t *svc, papi_attribute_t **attributes, char **files, char **metadata, papi_attribute_t ***used) argument
[all...]
/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrormain.c43 Eptr **files; /* array of pointers into errors */ variable
50 boolean query = FALSE; /* query the operator if touch files */
51 boolean notouch = FALSE; /* don't touch ANY files */
70 * -n: don't touch ANY files!
73 * file; if not specified, all files with hard, non
76 * -t: touch only files ending with the list of suffices, each
79 * will touch only files ending with .c, .y or .l
83 * -v: after touching all files, overlay vi(1), ex(1) or ed(1)
87 * files containing errors.
200 findfiles(nerrors, errors, &nfiles, &files);
[all...]
/illumos-gate/usr/src/lib/print/libpapi-dynamic/common/
H A Djob.c138 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job,
146 if ((svc == NULL) || (printer == NULL) || (files == NULL) ||
160 job_ticket, files, &j->job);
168 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job)
171 job_attributes, job_ticket, files, job,
178 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job)
181 job_attributes, job_ticket, files, job,
188 papi_job_ticket_t *job_ticket, char **files, papi_job_t *job)
191 job_attributes, job_ticket, files, job,
136 _papi_job_submit_reference_or_validate(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job, char *function) argument
166 papiJobSubmit(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
176 papiJobSubmitByReference(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
186 papiJobValidate(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_init.c30 profile_init(const_profile_filespec_t *files, profile_t *ret_profile) argument
44 if ( files ) {
45 for (fs = files; !PROFILE_LAST_FILESPEC(*fs); fs++) {
62 * If last is still null after the loop, then all the files were
90 const_profile_filespec_t *files; local
97 files = malloc ((size+1) * sizeof(*files));
98 if (files == NULL)
101 files[i] = file->data->filespec;
102 files[siz
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dmain.c224 char **files = shp->login_files; local
225 while ((name = *files++) && !sh_source(shp, iop, sh_mactry(shp,name)));
630 /* prints out messages if files in list have been modified since last call */
631 static void chkmail(Shell_t *shp, char *files) argument
639 if(*(cp=files) == 0)
/illumos-gate/usr/src/cmd/sed/
H A Dmain.c61 * Linked list of units (strings and files) to be compiled
76 * Linked list of files to be processed
84 * Linked list pointer to files and pointer to current
87 static struct s_flist *files, **fl_nextp = &files; variable in typeref:struct:s_flist
96 static int ispan; /* Whether inplace editing spans across files */
100 * units, but span across input files. The latter is optional if editing
148 ispan = 1; /* span across input files */
168 ispan = 0; /* don't span across input files */
217 * together. Empty strings and files ar
[all...]
/illumos-gate/usr/src/cmd/tnf/tnfdump/
H A Dmain.c65 int numfiles; /* number of files to be printed */
95 scanargs(int argc, char **argv, int *nfiles, char ***files) argument
115 *files = &argv[optind];
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/os/
H A Dinit_os_ctx.c186 free_filespecs(profile_filespec_t *files) argument
190 if (files == 0)
193 for (cp = files; *cp; cp++)
195 free(files);
203 profile_filespec_t* files; local
246 files = malloc(2 * sizeof(char *));
247 files[0] = name;
248 files[1] = 0;
275 files = (char**) MALLOC((n_entries+1) * sizeof(char*));
276 if (files
343 profile_filespec_t *files = 0; local
[all...]
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dinput.c233 read_ctf(char **files, int n, char *label, read_cb_f *func, void *private, argument
240 if ((rc = read_ctf_common(files[i], label, func,
278 count_files(char **files, int n) argument
287 char *file = files[i];
325 debug(2, "Found %d files in %d input files\n", nfiles, n);
/illumos-gate/usr/src/lib/print/libpapi-ipp/common/
H A Djob.c202 char **files, papi_job_t *job,
234 if ((files == NULL) || (files[0] == NULL))
237 if (files[1] != NULL) /* more than 1 file */
243 /* if we have files, validate access to them */
244 if (files != NULL) {
245 for (i = 0; files[i] != NULL; i++) {
246 if (access(files[i], R_OK) < 0) {
247 detailed_error(svc, "%s: %s", files[i],
252 if (strcmp("standard input", files[
199 internal_job_submit(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job, call_type_t call_type) argument
335 papiJobSubmit(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
344 papiJobSubmitByReference(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
353 papiJobValidate(papi_service_t handle, char *printer, papi_attribute_t **job_attributes, papi_job_ticket_t *job_ticket, char **files, papi_job_t *job) argument
[all...]
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_confmgr.c259 * will have names inherited from the /var/ldap/ldap* files such as
666 * the credential files at the same time.
667 * files is char *[3] = { "config", "cred", NULL };
672 __ns_ldap_DumpConfigFiles(char **files) argument
699 filename = files[fi];
796 char *files[3]; local
798 files[0] = NULL;
799 files[1] = NULL;
800 files[2] = NULL;
802 files[
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dtail.c24 * print the tail of one or more files
33 "[+NAME?tail - output trailing portion of one or more files ]"
34 "[+DESCRIPTION?\btail\b copies one or more input files to standard output "
96 "[+0?All files copied successfully.]"
97 "[+>0?One or more files did not copy.]"
234 * see whether both files are needed
426 Tail_t* files; local
615 files = 0;
624 if (files)
627 files
[all...]
/illumos-gate/usr/src/cmd/newform/
H A Dnewform.c99 files = 0, /* Number of input files */ variable
149 if (files) {
264 files++;
/illumos-gate/usr/src/cmd/print/bsd-sysv-commands/
H A Din.lpd.c110 cleanup(char ***files, char **cf) argument
112 if (*files != NULL) {
115 for (i = 0; (*files)[i] != NULL; i++) {
116 (void) unlink((*files)[i]);
117 free((*files)[i]);
119 free(*files);
120 *files = NULL;
130 parse_cf(papi_service_t svc, char *cf, char **files) argument
227 if (is_postscript(files[0]) == 1)
232 if (is_postscript(files[
370 submit_job(papi_service_t svc, FILE *ifp, char *printer, int rid, char *cf, char **files) argument
492 char *file, **files = NULL; /* the job data files */ local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dmain.c41 int iamremote; /* act as remote server for transfering files */
416 * rcp like interface for distributing files.
425 struct namelist *files, *hosts; local
438 files = prev = nl;
463 prnames(files);
467 insert(NULL, files, hosts, cmds);
/illumos-gate/usr/src/cmd/sgs/ldd/common/
H A Dldd.c339 * are no exit conditions so that we can process a list of files,
359 * Get the files elf descriptor and process it as an elf or
558 * crash. Such objects are always special purpose files (like an OS
559 * kernel) --- files for which the ldd operation doesn't make sense.
675 const char *files = prefile; local
687 * Determine which preload files and preload environment
692 files = prefile_64;
697 files = prefile_32;
703 strlen(fname) + strlen(files) + 5)) == 0) {
709 (void) sprintf(str, format, preload, fname, files);
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dmain.c363 fsck_ino_t files; local
454 * 4: scan inodes looking for disconnected files; check reference counts
542 files = maxino - UFSROOTINO - sblock.fs_cstotal.cs_nifree - n_files;
548 if (debug && (files > 0 || blks > 0)) {
550 pwarn("Reclaimed: %d directories, %d files, %lld fragments\n",
551 countdirs, files - countdirs,
564 pwarn("%ld files, %lld used, %lld free "
583 if (files < 0)
584 pwarn("%d inodes missing\n", -files);
/illumos-gate/usr/src/cmd/fwflash/common/
H A Dfwflash.c1074 "<files>\n"
1231 char *files; local
1233 if (files = strtok(options, ",")) {
1241 (void) strlcpy(filelist[0], files, strlen(files) + 1);
1248 while (files = strtok(NULL, ",")) {
1256 (void) strlcpy(filelist[i], files,
1257 strlen(files) + 1);
1269 (void) strlcpy(filelist[0], options, strlen(files) + 1);
/illumos-gate/usr/src/tools/onbld/Scm/
H A DWorkSpace.py70 Truly copied files have non-nil .parentname and .renamed = False
148 files = set()
150 files.update(c.files())
155 # files if the localtip is a workingctx, so remove them in
162 for f in files.copy():
164 files.remove(f)
166 return self.ws.status(self.parenttip, self.localtip, files=files)
182 - Drop entries for modified files tha
311 def files(self): member in class:ActiveList
586 def files(self): member in class:activectx
[all...]

Completed in 92 milliseconds

12