Searched defs:file (Results 1 - 25 of 602) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libcurses/screen/
H A D_scr_init.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
49 scr_init(char *file) argument
51 return (_scr_all(file, 0));
H A D_scr_restore.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
49 scr_restore(char *file) argument
51 return (_scr_all(file, 1));
H A D_scr_set.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
49 scr_set(char *file) argument
51 return (_scr_all(file, 2));
H A Dscr_dump.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
48 * Dump a screen image to a file. This routine and scr_reset
53 scr_dump(char *file) argument
58 if ((filep = fopen(file, "wF")) == NULL) {
62 "\"%s\".\n", file);
H A Dscr_all.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
47 /* Set <screen> idea of the screen image to that stored in "file". */
50 _scr_all(char *file, int which) argument
55 if ((filep = fopen(file, "rF")) == NULL)
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Dexecv.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28 * execv(file, argv)
35 execv(char *file, char **argv) argument
39 return (execve(file, argv, environ));
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dexecv.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
33 * execv(file, argv)
47 execv(const char *file, char *const argv[]) argument
50 return (execve(file, argv, _environ));
/illumos-gate/usr/src/cmd/sgs/size/common/
H A Dfcns.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
36 * error(file, string)
42 error(char *file, char *string) argument
51 "size: %s[%s]: %s\n", archive, file, string);
54 "size: %s: %s\n", file, string);
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfopen.c31 Sfio_t* sfopen(Sfio_t* f, const char* file, const char* mode) argument
33 Sfio_t* sfopen(f,file,mode)
35 char* file; /* file/string to be opened */
39 return _sfopen(f, file, mode);
/illumos-gate/usr/src/lib/libpp/common/
H A Dppline.c31 ppline(int line, char* file) argument
41 ppline(1, file);
42 file = error_info.file;
47 else if (file != pp.lastfile)
50 pp.firstfile = file;
51 type[1] = ((pp.flags & PP_linetype) && !*pp.lineid && pp.lastfile) ? (line <= 1 ? (file == pp.firstfile ? PP_sync : PP_sync_push) : PP_sync_pop) : PP_sync;
52 pp.lastfile = file;
57 file = 0;
80 if (file)
[all...]
H A Dppincref.c32 ppincref(char* parent, char* file, int line, int type) argument
47 error(0, "%-*s%s", level * 4, "", file);
H A Dppmacref.c31 ppmacref(struct ppsymbol* sym, char* file, int line, int type, unsigned long sum) argument
35 NoP(file);
/illumos-gate/usr/src/cmd/mailx/
H A Dusg.local.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
52 static int ismailbox(char *file);
55 * Locate the user's mailbox file (ie, the place where new, unread
81 * Make sure file matches (/usr|/var)(/spool)?/mail/.
85 ismailbox(char *file) argument
88 return (strncmp(file, maildir, strlen(maildir)) == 0);
90 if (strncmp(file, "/va
[all...]
H A Dlpaths.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
44 * libpath(file) - return the full path to the library file
55 libpath(char *file) argument
59 snprintf(buf, sizeof (buf), "%s/%s", LIBPATH, file);
64 * Return the path to a potentially locale-specific help file.
67 helppath(char *file) argument
[all...]
/illumos-gate/usr/src/stand/lib/sa/
H A Dassert.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
34 __assert(const char *assertion, const char *file, int line) argument
39 "%s, file: %s, line: %d", assertion, file, line);
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Drequest.h4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
34 * that can be "request", "request:page", or "request:page:file". If page isn't
37 * If a file name is given a page number must be supplied, and in that case the
38 * request will be looked up in that file.
48 char *file; member in struct:__anon794
/illumos-gate/usr/src/cmd/lp/lib/class/
H A Dputclass.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
49 char *file; local
63 * Open the class file and write out the class members.
66 if (!(file = getclassfile(name)))
69 if ((fd = open_locked(file, "w", MODE_READ)) < 0) {
70 Free (file);
73 Free (file);
[all...]
/illumos-gate/usr/src/boot/lib/libstand/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) argument
38 panic("Assertion failed: (%s), file %s, line %d.\n",
39 expression, file, line);
42 "Assertion failed: (%s), function %s, file %s, line %d.\n",
43 expression, func, file, line);
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dexecve.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
29 #include <sys/file.h>
33 execve(char *file, char **argv, char **arge) argument
39 CHKNULL(file);
40 if (strncmp(file, "/usr/ucb", strlen("/usr/ucb")) == 0) {
41 if (_syscall(SYS_faccessat, AT_FDCWD, file, F_OK, 0) == -1) {
43 strcat(path, strrchr(file, '/'));
[all...]
/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dexecve.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28 #include <sys/file.h>
32 execve(char *file, char **argv, char **arge) argument
37 if (strncmp(file, "/usr/bin", strlen("/usr/bin")) == 0 ||
38 strncmp(file, "/bin", strlen("/bin")) == 0) {
39 if (_syscall(SYS_faccessat, AT_FDCWD, file, F_OK, 0) == -1) {
41 strcat(path, strrchr(file, '/'));
[all...]
/illumos-gate/usr/src/lib/libmail/common/
H A Dsystemvp.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
50 systemvp(char *file, char **argv, int resetid) argument
61 (void) execvp(file, argv);
/illumos-gate/usr/src/cmd/rcap/common/
H A Drcapd_stat.c4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
37 * Return the pid of the writer of the statistics file.
40 stat_get_rcapd_pid(char *file) argument
47 if ((fd = open(file, O_RDONLY)) < 0)
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Dlintsup.c4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
48 elfedit32_init_obj_state(const char *file, int fd, Elf *elf) argument
54 elfedit64_init_obj_state(const char *file, int fd, Elf *elf) argument
/illumos-gate/usr/src/lib/libast/common/comp/
H A Drealpath.c45 realpath(const char* file, char* path) argument
47 return resolvepath(file, path, PATH_MAX) > 0 ? path : (char*)0;
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dmimetype.c47 * return mime type for file
51 mimetype(Mime_t* mp, Sfio_t* fp, const char* file, struct stat* st) argument
68 return magictype(mp->magic, fp, file, st);

Completed in 111 milliseconds

1234567891011>>