Searched refs:filep (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_operhlp.c89 const char *filep = strrchr(filename, '/'); local
90 char *file2 = strrchr(filep?filep:filename, '\\');
94 filep = file2 + 1;
95 else if(filep)
96 filep++;
98 filep = filename;
101 encfile = curl_easy_escape(curl, filep, 0 /* use strlen */);
/macosx-10.10.1/dtrace-147/DTTk/Bin/
H A Dmmapfiles.d50 this->filep = this->ufentryp->uf_file;
51 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
H A Dfspaging.d83 this->filep = this->ufentryp->uf_file;
84 self->offset = this->filep->f_offset;
85 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
H A Dfsrw.d79 this->filep = this->ufentryp->uf_file;
80 self->offset = this->filep->f_offset;
81 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
/macosx-10.10.1/dtrace-147/DTTk/Proc/
H A Dmmapfiles.d50 this->filep = this->ufentryp->uf_file;
51 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
/macosx-10.10.1/swig-12/Source/DOH/
H A Dfile.c23 FILE *filep; member in struct:__anon12441
35 if (f->filep) {
36 fclose(f->filep);
54 if (f->filep) {
55 return fread(buffer, 1, len, f->filep);
70 if (f->filep) {
71 int ret = (int) fwrite(buffer, 1, len, f->filep);
72 int err = (ret != len) ? ferror(f->filep) : 0;
88 if (f->filep) {
89 return fseek(f->filep, offse
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dlib_screen.c42 getwin(FILE *filep) argument
47 T((T_CALLED("getwin(%p)"), filep));
49 clearerr(filep);
50 (void) fread(&tmp, sizeof(WINDOW), 1, filep);
51 if (ferror(filep)
100 clearerr(filep);
104 filep);
105 if (ferror(filep)) {
116 putwin(WINDOW *win, FILE *filep) argument
121 T((T_CALLED("putwin(%p,%p)"), win, filep));
[all...]
/macosx-10.10.1/dtrace-147/DTTk/FS/
H A Dfspaging.d83 this->filep = this->ufentryp->uf_file;
84 self->offset = this->filep->f_offset;
85 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
H A Dfsrw.d79 this->filep = this->ufentryp->uf_file;
80 self->offset = this->filep->f_offset;
81 this->vnodep = this->filep != 0 ? this->filep->f_vnode : 0;
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/termcap/
H A Dtermcap.c462 int filep;
497 filep = termcap_name && valid_filename_p (termcap_name);
505 if (termcap_name && !filep && !strcmp (name, getenv ("TERM")))
523 if (!termcap_name || !filep)
459 int filep; local
/macosx-10.10.1/emacs-93/emacs/src/
H A Dtermcap.c528 int filep;
561 filep = termcap_name && valid_filename_p (termcap_name);
569 if (termcap_name && !filep && !strcmp (name, getenv ("TERM")))
587 if (!termcap_name || !filep)
525 int filep; local
/macosx-10.10.1/remote_cmds-47/tftpd.tproj/
H A Dtftpd.c738 validate_access(char **filep, int mode) argument
749 filename = *filep;
751 if (realpath(*filep, resolved_path)==NULL) {
757 filename = *filep;
820 *filep = filename;
838 *filep = filename;
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/
H A Dhfs_search.c715 HFSPlusCatalogFile *filep = (HFSPlusCatalogFile *)rec; local
717 if ((SWAP_BE32(filep->userInfo.fdType) == kHardLinkFileType) &&
718 (SWAP_BE32(filep->userInfo.fdCreator) == kHFSPlusCreator)) {
721 (filep->bsdInfo.special.linkCount == 0)) {
723 } else if ((SWAP_BE32(filep->userInfo.fdType) == kHFSAliasType) &&
724 (SWAP_BE32(filep->userInfo.fdCreator) == kHFSAliasCreator) &&
725 (filep->flags & kHFSHasLinkChainMask)) {
H A Dhfs_catalog.c4471 promotefork(struct hfsmount *hfsmp, const struct HFSCatalogFile *filep, argument
4480 forkp->cf_size = filep->rsrcLogicalSize;
4481 forkp->cf_blocks = filep->rsrcPhysicalSize / blocksize;
4484 xp[0].startBlock = (u_int32_t)filep->rsrcExtents[0].startBlock;
4485 xp[0].blockCount = (u_int32_t)filep->rsrcExtents[0].blockCount;
4486 xp[1].startBlock = (u_int32_t)filep->rsrcExtents[1].startBlock;
4487 xp[1].blockCount = (u_int32_t)filep->rsrcExtents[1].blockCount;
4488 xp[2].startBlock = (u_int32_t)filep->rsrcExtents[2].startBlock;
4489 xp[2].blockCount = (u_int32_t)filep->rsrcExtents[2].blockCount;
4491 forkp->cf_size = filep
[all...]
H A Dhfs_hotfiles.c519 HFSPlusCatalogFile *filep; local
640 filep = (HFSPlusCatalogFile *)datap;
642 if (filep->dataFork.totalBlocks == 0) {
651 if (!hotextents(hfsmp, &filep->dataFork.extents[0])) {
654 cnid = filep->fileID;
/macosx-10.10.1/network_cmds-457/kdumpd.tproj/
H A Dkdumpd.c419 validate_access(char **filep, int mode) argument
423 char *filename = *filep;
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-msg.el1797 filep name address element)
1848 filep nil)
1852 (setq filep t)
1875 filep t))
1878 filep t)))
1880 (when (and filep v)
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf64-sparc.c737 elf64_sparc_print_symbol_all (bfd *abfd ATTRIBUTE_UNUSED, PTR filep,
740 FILE *file = (FILE *) filep;
734 elf64_sparc_print_symbol_all(bfd *abfd ATTRIBUTE_UNUSED, PTR filep, asymbol *symbol) argument
H A Dtekhex.c898 void * filep,
902 FILE *file = (FILE *) filep;
897 tekhex_print_symbol(bfd *abfd, void * filep, asymbol *symbol, bfd_print_symbol_type how) argument
H A Dlibcoff-in.h338 (bfd *, void * filep, asymbol *, bfd_print_symbol_type);
H A Decofflink.c354 bfd_boolean filep;
423 && (*tail)->filep
443 n->filep = TRUE;
481 n->filep = FALSE;
1586 if (! l->filep)
2483 if (! l->filep)
351 bfd_boolean filep; member in struct:shuffle
H A Dlibcoff.h342 (bfd *, void * filep, asymbol *, bfd_print_symbol_type);
/macosx-10.10.1/ruby-106/ruby/
H A Dfile.c5296 rb_find_file_ext(VALUE *filep, const char *const *ext) argument
5298 return rb_find_file_ext_safe(filep, ext, rb_safe_level());
5302 rb_find_file_ext_safe(VALUE *filep, const char *const *ext, int safe_level) argument
5304 const char *f = StringValueCStr(*filep);
5305 VALUE fname = *filep, load_path, tmp;
5317 *filep = fname;
5330 *filep = copy_path_class(fname, *filep);
5345 fname = rb_str_dup(*filep);
5359 *filep
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/
H A Dllib-lncurses1602 FILE *filep)
1608 FILE *filep)
H A Dllib-lncursest1606 FILE *filep)
1612 FILE *filep)

Completed in 784 milliseconds

12