HomeSort by: relevance | last modified time | path
    Searched defs:process (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/usr.bin/gzip/
znew 37 process () { function
94 echo "$prog: failed to process $filez"
132 if ! process "$1"; then
znew 37 process () { function
94 echo "$prog: failed to process $filez"
132 if ! process "$1"; then
  /src/usr.bin/unvis/
unvis.c 51 static void process(FILE *, const char *, int);
97 process(fp, *argv, eflags);
103 process(stdin, "<stdin>", eflags);
108 process(FILE *fp, const char *filename, int eflags) function in typeref:typename:void
unvis.c 51 static void process(FILE *, const char *, int);
97 process(fp, *argv, eflags);
103 process(stdin, "<stdin>", eflags);
108 process(FILE *fp, const char *filename, int eflags) function in typeref:typename:void
  /src/usr.bin/soelim/
soelim.c 46 * soelim - a filter to process n/troff input eliminating .so's
75 static int process(struct path *, const char *);
157 (void)process(&p, STDIN_NAME);
161 (void)process(&p, argv[0]);
169 process(struct path *p, const char *file) function in typeref:typename:int
229 if (process(p, fname) < 0)
soelim.c 46 * soelim - a filter to process n/troff input eliminating .so's
75 static int process(struct path *, const char *);
157 (void)process(&p, STDIN_NAME);
161 (void)process(&p, argv[0]);
169 process(struct path *p, const char *file) function in typeref:typename:int
229 if (process(p, fname) < 0)
  /src/usr.bin/tput/
tput.c 58 static char **process(const char *, const char *, char **);
117 argv = process(p, s, argv);
139 process(const char *cap, const char *str, char **argv) function in typeref:typename:char **
tput.c 58 static char **process(const char *, const char *, char **);
117 argv = process(p, s, argv);
139 process(const char *cap, const char *str, char **argv) function in typeref:typename:char **
  /src/usr.sbin/sysinst/
txtwalk.c 55 static int process(const struct lookfor *, char *);
97 * For each match in these, process the match.
114 error = process(&these[which], line);
123 /* process the matched line. */
125 process(const struct lookfor *item, char *line) function in typeref:typename:int
136 printf("process: \"%s\"\n", line);
149 /* Process the stuff. */
txtwalk.c 55 static int process(const struct lookfor *, char *);
97 * For each match in these, process the match.
114 error = process(&these[which], line);
123 /* process the matched line. */
125 process(const struct lookfor *item, char *line) function in typeref:typename:int
136 printf("process: \"%s\"\n", line);
149 /* Process the stuff. */
  /src/lib/libc/gdtoa/test/
strtodt.c 55 process(char *fname, FILE *f) function in typeref:typename:int
123 n = process("<stdin>", stdin);
127 n += process(s, f);
strtodt.c 55 process(char *fname, FILE *f) function in typeref:typename:int
123 n = process("<stdin>", stdin);
127 n += process(s, f);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
pmu.h 37 u32 process; member in struct:nvkm_pmu::__anonc8ba6cde0208
43 int nvkm_pmu_send(struct nvkm_pmu *, u32 reply[2], u32 process,
61 /* interface to MEMX process running on PMU */
pmu.h 37 u32 process; member in struct:nvkm_pmu::__anonc8ba6cde0208
43 int nvkm_pmu_send(struct nvkm_pmu *, u32 reply[2], u32 process,
61 /* interface to MEMX process running on PMU */
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/
nouveau_nvkm_subdev_pmu_gt215.c 36 u32 process, u32 message, u32 data0, u32 data1)
54 /* we currently only support a single process at a time waiting
60 pmu->recv.process = process;
71 nvkm_wr32(device, 0x10a1c4, process);
84 (pmu->recv.process == 0));
99 u32 process, message, data0, data1; local in function:gt215_pmu_recv
114 process = nvkm_rd32(device, 0x10a1c4);
123 /* wake process if it's waiting on a synchronous reply */
124 if (pmu->recv.process) {
    [all...]
nouveau_nvkm_subdev_pmu_gt215.c 36 u32 process, u32 message, u32 data0, u32 data1)
54 /* we currently only support a single process at a time waiting
60 pmu->recv.process = process;
71 nvkm_wr32(device, 0x10a1c4, process);
84 (pmu->recv.process == 0));
99 u32 process, message, data0, data1; local in function:gt215_pmu_recv
114 process = nvkm_rd32(device, 0x10a1c4);
123 /* wake process if it's waiting on a synchronous reply */
124 if (pmu->recv.process) {
    [all...]
  /src/usr.bin/vis/
vis.c 64 static void process(FILE *);
154 process(fp);
163 process(stdin);
168 process(FILE *fp) function in typeref:typename:void
226 * At this point we will process one character.
vis.c 64 static void process(FILE *);
154 process(fp);
163 process(stdin);
168 process(FILE *fp) function in typeref:typename:void
226 * At this point we will process one character.
  /src/usr.bin/realpath/
realpath.c 53 static bool process(char *path);
99 if (!process(path))
106 process(char *path) function in typeref:typename:bool
realpath.c 53 static bool process(char *path);
99 if (!process(path))
106 process(char *path) function in typeref:typename:bool
  /src/bin/csh/
proc.h 38 * Structure for each process the shell knows about:
45 struct process { struct
46 struct process *p_next; /* next in global "proclist" */
47 struct process *p_friends; /* next in job list (or self) */
71 #define PDUMPED (1<<9) /* process dumped core */
76 #define PPTIME (1<<14) /* time individual process */
93 extern struct process proclist; /* list head of all processes */
96 extern struct process *pholdjob; /* one level stack of current jobs */
98 extern struct process *pcurrjob; /* current job */
99 extern struct process *pcurrent; /* current job in table *
    [all...]
proc.h 38 * Structure for each process the shell knows about:
45 struct process { struct
46 struct process *p_next; /* next in global "proclist" */
47 struct process *p_friends; /* next in job list (or self) */
71 #define PDUMPED (1<<9) /* process dumped core */
76 #define PPTIME (1<<14) /* time individual process */
93 extern struct process proclist; /* list head of all processes */
96 extern struct process *pholdjob; /* one level stack of current jobs */
98 extern struct process *pcurrjob; /* current job */
99 extern struct process *pcurrent; /* current job in table *
    [all...]
  /src/usr.bin/who/
who.c 71 static void process(const char *, int);
91 { INIT_PROCESS, "init process" },
92 { LOGIN_PROCESS, "login process" },
93 { USER_PROCESS, "user process" },
94 { DEAD_PROCESS, "dead process" },
186 process(NULL, show_labels);
195 process(*argv, show_labels);
261 process(const char *fname, int show_labels) function in typeref:typename:void
who.c 71 static void process(const char *, int);
91 { INIT_PROCESS, "init process" },
92 { LOGIN_PROCESS, "login process" },
93 { USER_PROCESS, "user process" },
94 { DEAD_PROCESS, "dead process" },
186 process(NULL, show_labels);
195 process(*argv, show_labels);
261 process(const char *fname, int show_labels) function in typeref:typename:void
  /src/usr.sbin/lpr/common_source/
rmjob.c 62 extern char *user[]; /* users to process */
127 * process the files
130 process(files[i]->d_name);
142 * Process a lock file: collect the pid of the active
182 * Process a control file.
185 process(const char *file) function in typeref:typename:void

Completed in 35 milliseconds

1 2 3