Searched refs:fname (Results 251 - 275 of 775) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sql/
H A Dconfig.c39 const char *fname,
45 const char *fname );
461 return create_baseObject( c->be, c->fname, c->lineno );
530 * Read the entries specified in fname and merge the attributes
538 const char *fname )
545 assert( fname != NULL );
547 fp = ldif_open( fname, "r" );
552 fname, 0, 0 );
553 perror( fname );
625 fname,
631 create_baseObject( BackendDB *be, const char *fname, int lineno ) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tools/
H A DgenStubs.tcl378 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
384 return [list $rtype $fname $args]
415 return [list $rtype $fname $args]
460 lassign $decl rtype fname args
475 append line $fname $args
480 append line $fname
547 lassign $decl rtype fname args
549 set lfname [string tolower [string index $fname 0]]
550 append lfname [string range $fname 1 end]
551 if {$fname e
[all...]
/macosx-10.10.1/vim-55/src/proto/
H A Dmisc1.pro62 char_u *gettail __ARGS((char_u *fname));
63 char_u *gettail_sep __ARGS((char_u *fname));
64 char_u *getnextcomp __ARGS((char_u *fname));
69 int dir_of_file_exists __ARGS((char_u *fname));
75 char_u *FullName_save __ARGS((char_u *fname, int force));
86 int vim_fexists __ARGS((char_u *fname));
91 int match_suffix __ARGS((char_u *fname));
/macosx-10.10.1/BerkeleyDB-21/db/lock/
H A Dlock_list.c324 char *fname, *dname, *p, namebuf[26]; local
338 (void)__dbreg_get_name(env, fidp, &fname, &dname);
340 if (fname == NULL && dname == NULL)
345 if (fname != NULL && dname != NULL) {
347 "%14s.%-10s", fname, dname);
349 } else if (fname != NULL)
350 p = fname;
/macosx-10.10.1/vim-55/src/
H A Dex_cmds2.c21 static void cmd_source __ARGS((char_u *fname, exarg_T *eap));
426 static linenr_T debuggy_find __ARGS((int file,char_u *fname, linenr_T after, garray_T *gap, int *fp));
710 dbg_find_breakpoint(file, fname, after)
712 char_u *fname; /* file or function name */
715 return debuggy_find(file, fname, after, &dbg_breakp, NULL);
723 has_profiling(file, fname, fp)
725 char_u *fname; /* file or function name */
728 return (debuggy_find(file, fname, (linenr_T)0, &prof_ga, fp)
737 debuggy_find(file, fname, after, gap, fp)
739 char_u *fname; /* fil
1476 char_u *fname; local
2770 char_u *fname = NULL; local
2810 EMSG2(_(e_notopen), fname); local
2833 char_u *fname; /* name of sourced file */ member in struct:source_cookie
[all...]
H A Dmark.c23 * otherwise it is from .viminfo and namedfm[n].fname is the file name.
117 vim_free(namedfm[i].fname);
118 namedfm[i].fname = NULL;
169 vim_free(curwin->w_jumplist[0].fname);
178 fm->fname = NULL;
500 * For an xtended filemark: set the fnum from the fname.
510 if (fm->fname != NULL)
516 if (fm->fname[0] == '~' && (fm->fname[1] == '/'
518 || fm->fname[
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/dbreg/
H A Ddbreg_util.c343 FNAME *fname; local
381 if (__dbreg_id_to_fname(dblp, ndx, 0, &fname) != 0)
391 * Note that we're relying on fname not to change, even though
397 name = fname->fname_off == INVALID_ROFF ?
398 NULL : R_ADDR(&dblp->reginfo, fname->fname_off);
409 fname->ufid, name, fname->s_type, ndx, fname->meta_pgno,
410 NULL, TXN_INVALID, F_ISSET(fname, DB_FNAME_INMEM) ?
578 char *dname, *fname; local
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/tools/
H A DgenStubs.tcl282 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
315 return [list $rtype $fname $args]
357 lassign $decl rtype fname args
368 append line "$fname _ANSI_ARGS_("
417 lassign $decl rtype fname args
419 set lfname [string tolower [string index $fname 0]]
420 append lfname [string range $fname 1 end]
422 set text "#ifndef $fname\n#define $fname"
458 lassign $decl rtype fname arg
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/NetBSD/
H A Dutmpx.c508 __utmpxname(struct _utmpx *U, const char *fname) argument
512 if (fname == NULL) {
521 len = strlen(fname);
527 if (fname[len - 1] != 'x')
536 (void)strcpy(U->utfile, fname);
542 _utmpxname(struct _utmpx *U, const char *fname) argument
548 ret = __utmpxname(U, fname);
554 utmpxname(const char *fname) argument
556 return _utmpxname(__default_utx(), fname);
/macosx-10.10.1/dtrace-147/cmd/
H A Ddtrace_1.c413 dof_prune(const char *fname) argument
420 if ((fd = open(fname, O_RDONLY)) == -1) {
425 fatal("failed to open %s", fname);
430 fatal("failed to fstat %s", fname);
433 fatal("failed to allocate memory for %s", fname);
436 fatal("failed to read %s", fname);
441 if ((fd = open(fname, O_WRONLY | O_TRUNC)) == -1)
442 fatal("failed to open %s for writing", fname);
458 "enabling in %s\n", fname);
466 fatal("failed to write to %s", fname);
500 char *fname = g_etcfile, *tmpname; local
730 dof_update_dictionary(const char *fname, CFMutableDictionaryRef dict) argument
832 dof_install_dictionary(const char *fname) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/nt/
H A Dcmdproxy.c110 canon_filename (char *fname) argument
112 char *p = fname;
121 return fname;
253 char *p, *fname; local
262 fname = strrchr (prog, '\\');
263 if (!fname)
265 fname = prog + 2;
266 strncpy (dir, prog, fname - prog);
267 dir[fname - prog] = '\0';
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dconfig_file.c357 * Parse the config file `fname', generating the structures into `res'
404 is_plist_file(const char *fname) argument
406 size_t len = strlen(fname);
410 if (strcasecmp(&fname[len - (sizeof(suffix) - 1)], suffix) != 0)
421 * @param fname a file name to a Kerberos configuration file
430 const char *fname,
443 * If the fname starts with "~/" parse configuration file in the
447 if (fname[0] == '~' && fname[1] == '/') {
468 asprintf(&newfname, "%s%s", home, &fname[
429 krb5_config_parse_file_multi(krb5_context context, const char *fname, krb5_config_section **res) argument
545 krb5_config_parse_file(krb5_context context, const char *fname, krb5_config_section **res) argument
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dopen.c33 APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **new, const char *fname, apr_int32_t flag, apr_fileperms_t perm, apr_pool_t *pool)
87 rv = DosOpen(fname, &(dafile->filedes), &action, 0, 0, oflags, mflags, NULL);
101 dafile->fname = apr_pstrdup(pool, fname);
132 status = APR_FROM_OS_ERROR(DosDelete(file->fname));
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dcut.c234 c_cut(fp, fname)
236 char *fname;
265 f_cut(fp, fname)
267 char *fname;
278 builtin_error("%s: line too long.", fname);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Dlocalealias.c143 static size_t read_alias_file PARAMS ((const char *fname, int fname_len))
218 read_alias_file (fname, fname_len)
219 const char *fname;
229 mempcpy (mempcpy (full_fname, fname, fname_len),
232 memcpy (full_fname, fname, fname_len);
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dlocalealias.c143 static size_t read_alias_file PARAMS ((const char *fname, int fname_len))
218 read_alias_file (fname, fname_len)
219 const char *fname;
229 mempcpy (mempcpy (full_fname, fname, fname_len),
232 memcpy (full_fname, fname, fname_len);
/macosx-10.10.1/file_cmds-242/pax/
H A Dftree.c172 ft->fname = str;
273 (void)fprintf(stderr, "%s\n", ft->fname);
326 if (dochdir(ftcur->fname) < 0) {
328 ftcur->fname);
333 farray[0] = ftcur->fname;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cgimage.py83 fname = '/System/Library//CoreServices/Installer.app/Contents/PlugIns/Summary.bundle/Contents/Resources/Success.png'
84 if not os.path.exists(fname):
85 fname = '/System/Library//Frameworks/Automator.framework/Versions/A/Resources/GearActionDisabled.png'
86 if not os.path.exists(fname):
88 with open(fname, 'rb') as fp:
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/denyop/
H A Ddenyop.c128 const char *fname,
144 fname, lineno, 0 );
192 fname, lineno, op );
126 denyop_config( BackendDB *be, const char *fname, int lineno, int argc, char **argv ) argument
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-perl/
H A Dconfig.c86 const char *fname,
92 int rc = config_generic_wrapper( be, fname, lineno, argc, argv );
103 rc = config_generic_wrapper( be, fname, lineno, argc+1, av );
84 perl_back_db_config( BackendDB *be, const char *fname, int lineno, int argc, char **argv ) argument
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dds.c53 dns_fixedname_t fname; local
72 dns_fixedname_init(&fname);
73 name = dns_fixedname_name(&fname);
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_main.c100 char fname[CURL_MT_LOGFNAME_BUFSIZE]; local
103 strcpy(fname, env);
105 curl_memdebug(fname);
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Durl-cookie.el112 (defun url-cookie-parse-file (&optional fname)
113 (setq fname (or fname url-cookie-file))
115 (load fname nil t)
118 ;; (message "Could not load cookie file %s" fname)
150 (defun url-cookie-write-file (&optional fname)
151 (setq fname (or fname url-cookie-file))
152 (unless (file-directory-p (file-name-directory fname))
153 (ignore-errors (make-directory (file-name-directory fname))))
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/examples/
H A Dbrowser.tcl31 set fname [tk_getOpenFile]
32 if {![string length $fname]} {
36 set ch [open $fname]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tests/visualtests/
H A DtestSmall.tcl96 set fname [format "%s_w%d_h%d%s" $prefix $w $h $ext]
98 writePhotoFile $ph $fname "$fmt $opt" 1
99 set ph [readPhotoFile1 $fname "$fmt $opt"]
122 set msg "Image: $fname Format: $fmt $sep (Width: $w Height: $h)"

Completed in 429 milliseconds

<<11121314151617181920>>