Searched refs:filename (Results 251 - 275 of 328) sorted by relevance

<<11121314

/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dshared.h118 /* THe buffer for the filename of "/boot/grub/default". */
626 /* The filename which stores the information about a device map. */
1035 int grub_open (char *filename);
1056 /* Display device and filename completions. */
1057 void print_a_completion (char *filename);
H A Dfsys_zfs.c1420 zfs_open(char *filename) argument
1440 if (is_top_dataset_file(filename)) {
1464 if (dnode_get_path(mdn, filename, DNODE, stack)) {
/osnet-11/usr/src/grub/grub-0.97/util/
H A Dgrub-install.in74 INSTALL_DEVICE can be a GRUB device name or a system device filename.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DEmbed.pm329 C<xsinit($filename,$std,[@modules])>
333 B<$filename> is equivalent to the B<-o> option.
/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dattrib.h260 FILE_NAME_ATTR filename; member in union:__anon2035
/osnet-11/usr/src/cmd/sendmail/src/
H A Drecipient.c1287 ** filename -- the file name to check.
1300 writable(filename, ctladdr, flags)
1301 char *filename;
1310 sm_dprintf("writable(%s, 0x%lx)\n", filename, flags);
1375 errno = safefile(filename, euid, egid, user, flags, S_IWRITE, NULL);
1383 ** fname -- filename to include.
H A Dreadcf.c578 syserr("illegal filename '%s'", p);
889 ** filename -- name of file to read.
900 ** puts all lines in filename that match a scanf into
936 fileclass(class, filename, fmt, ismap, safe, optional)
938 char *filename;
951 sm_dprintf("fileclass(%s, fmt=%s)\n", filename, fmt);
953 if (*filename == '\0')
969 key = filename;
972 if ((p = strchr(filename, '@')) == NULL)
1101 else if (filename[
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/PPPort/
H A DPPPort.pm48 parameter it expects to be passed a filename. When called with no
49 parameters, it defults to the filename C<./pport.h>.
290 foreach $filename (map(glob($_),@ARGV)) {
291 unless (open(IN, "<$filename")) {
295 print "Scanning $filename...\n";
355 open(DIFF, "diff -u $filename /tmp/ppport.h.$$|");
356 while (<DIFF>) { s!/tmp/ppport\.h\.$$!$filename.patched!; print STDOUT; }
/osnet-11/usr/src/lib/libkmf/libkmf/common/
H A Dcsrcrlop.c868 kmf_is_crl_file(KMF_HANDLE_T handle, char *filename, KMF_ENCODE_FORMAT *pformat) argument
878 if (filename == NULL || pformat == NULL) {
897 return (IsCRLFileFn(handle, filename, pformat));
H A Dgeneralop.c674 kmf_read_input_file(KMF_HANDLE_T handle, char *filename, KMF_DATA *pdata) argument
689 if (filename == NULL || pdata == NULL) {
693 if ((fd = open(filename, O_RDONLY)) < 0) {
1033 kmf_get_file_format(char *filename, KMF_ENCODE_FORMAT *fmt) argument
1038 if (filename == NULL || !strlen(filename) || fmt == NULL)
1042 ret = kmf_read_input_file(NULL, filename, &filebuf);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dunistd.in.h375 _GL_FUNCDECL_SYS (euidaccess, int, (const char *filename, int mode)
378 _GL_CXXALIAS_SYS (euidaccess, int, (const char *filename, int mode));
422 _GL_EXTERN_C int _gl_register_fd (int fd, const char *filename)
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dpath.c620 char *pname,*oldname=shp->st.filename, buff[IOBSIZE+1];
646 shp->st.filename = pname;
657 pname = stakcopy(shp->st.filename);
660 free((void*)shp->st.filename);
662 shp->st.filename = oldname;
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_crypto_openssl.c616 get_cert(char *filename, X509 **retcert) argument
623 if (filename == NULL || retcert == NULL)
632 code = BIO_read_filename(tmp, filename);
641 pkiDebug("failed to read certificate from %s\n", filename);
653 get_key(char *filename, EVP_PKEY **retkey) argument
660 if (filename == NULL || retkey == NULL)
667 code = BIO_read_filename(tmp, filename);
675 pkiDebug("failed to read private key from %s\n", filename);
5999 char *filename)
6043 if (!(in = BIO_new_file(filename, "
5994 load_cas_and_crls(krb5_context context, pkinit_plg_crypto_context plg_cryptoctx, pkinit_req_crypto_context req_cryptoctx, pkinit_identity_crypto_context id_cryptoctx, int catype, char *filename) argument
6165 char filename[1024]; local
[all...]
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/loader/
H A Dgrub2.py274 def __init__(self, filename='/rpool/boot/grub/menu.conf', new_conf=False):
285 self._filename = filename
293 self._load(filename)
295 def _load(self, filename):
303 if not filename:
304 self._debug('No filename specified -- not loading menu '
308 self._debug('Loading menu.conf from %s', filename)
311 self._cfgparser.readfp(open(filename))
314 self._debug('[IGNORED] %s not found', filename)
371 def filename(sel member in class:MenuConfigParser
[all...]
/osnet-11/usr/src/lib/libscf/common/
H A Dmidlevel.c2476 * Generate a filename based on the fmri and the given name and return
2478 * If temp_filename is non-zero, also generate a temporary, unique filename
2484 * -1 if filename would exceed MAXPATHLEN or
2485 * -2 if unable to create directory to filename path
2488 gen_filenms_from_fmri(const char *fmri, const char *name, char *filename, argument
2503 (void) strcpy(filename, SMF_SPEEDY_FILES_PATH);
2504 (void) strcat(filename, fmri);
2505 if (mkdirp(filename, 0755) == -1) {
2511 (void) strcat(filename, "/");
2512 (void) strcat(filename, nam
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DMemoize.pm682 tie my %cache => 'DB_File', $filename, O_RDWR|O_CREAT, 0666;
686 whose name is in C<$filename>. The cache will persist after the
756 tie my %cache => 'MLDBM', 'DB_File', $filename, ...;
926 tie my %cache => 'GDBM_File', $filename, O_RDWR|O_CREAT, 0666;
936 tie my %cache => 'Memoize::SDBM_File', $filename, O_RDWR|O_CREAT, 0666;
951 tie my %cache => 'Memoize::Storable', $filename;
954 tie my %cache => 'Memoize::Storable', $filename, 'nstore';
/osnet-11/usr/src/grub/grub2/grub-core/font/
H A Dfont.c424 grub_font_load (const char *filename) argument
432 grub_printf ("add_font(%s)\n", filename);
435 file = grub_buffile_open (filename, 1024);
/osnet-11/usr/src/lib/libproc/common/
H A Dllib-lproc294 const char *filename, int flags, mode_t mode);
296 const char *filename, mode_t mode);
/osnet-11/usr/src/lib/libshell/common/include/
H A Ddefs.h76 char *filename; member in struct:sh_scoped
299 #define SH_FCOMPLETE 17 /* set for filename completion */
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DBasename.pm7 basename - extract just the filename from a path
/osnet-11/usr/src/lib/librcm/
H A Dlibrcm.c891 * Returns 1 if the filename is an rcm script.
892 * Returns 0 if the filename is an rcm module.
895 rcm_is_script(char *filename) argument
899 if (((tmp = strstr(filename, RCM_MODULE_SUFFIX)) != NULL) &&
/osnet-11/usr/src/lib/libldap4/common/
H A Dllib-lldap249 char *ldap_friendly_name( char *filename, char *uname,
/osnet-11/usr/src/grub/grub2/grub-core/video/readers/
H A Djpeg.c734 const char *filename)
739 file = grub_buffile_open (filename, 0);
733 grub_video_reader_jpeg(struct grub_video_bitmap **bitmap, const char *filename) argument
/osnet-11/usr/src/lib/libc/port/
H A Dllib-lc279 void _assert(const char *assertion, const char *filename, int line_num);
280 void __assert_c99(const char *assertion, const char *filename, int line_num,
773 DIR *opendir(const char *filename);
846 int remove(const char *filename);
/osnet-11/usr/src/lib/pkcs11/pkcs11_kms/common/
H A DkmsKeystoreUtil.c212 open_and_lock_file(char *filename, int cmd, mode_t mode, argument
217 fd = open_nointr(filename, mode|O_NONBLOCK);

Completed in 161 milliseconds

<<11121314