Searched refs:dir (Results 126 - 150 of 705) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/gdb/readline/
H A Dposixdir.h21 /* This file should be included instead of <dirent.h> or <sys/dir.h>. */
34 # include <sys/dir.h>
/haiku-fatelf/src/add-ons/kernel/busses/scsi/usb/
H A Dproto_common.h22 status_t process_data_io(usb_device_info *udi, iovec *sg_data, int32 sg_count/*sg_buffer *sgb*/, EDirection dir);
/haiku-fatelf/data/etc/bash_completion.d/helpers/
H A Dperl9 my ($base, $dir, $word) = @_;
22 chdir($dir) or return;
35 my $subdir = $dir . '/' . $directory;
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.h42 virtual status_t Lookup(void* dir, const char* entryName,
60 virtual status_t CreateSymlink(void* dir, const char* name,
63 virtual status_t Link(void* dir, const char* name,
65 virtual status_t Unlink(void* dir, const char* name);
75 virtual status_t Create(void* dir, const char* name,
90 virtual status_t CreateDir(void* dir, const char* name,
92 virtual status_t RemoveDir(void* dir, const char* name);
138 bool _GetNodeID(FUSENode* dir, const char* entryName,
140 status_t _GetNode(FUSENode* dir, const char* entryName,
142 status_t _InternalGetNode(FUSENode* dir,
[all...]
/haiku-fatelf/src/add-ons/print/transports/print_to_file/
H A DFileSelector.cpp79 entry_ref dir; local
81 if (msg->FindRef("directory", &dir) == B_OK) {
84 BDirectory bdir(&dir);
/haiku-fatelf/src/build/libbe/storage/mime/
H A DMimeUpdateThread.cpp183 BDirectory dir; local
184 err = dir.SetTo(ref);
188 err = dir.GetNextRef(&childRef);
/haiku-fatelf/src/libs/print/libprint/
H A DDbgMsg.cpp176 void DUMP_BDIRECTORY(BDirectory *dir) argument
178 DUMP_BNODE(dir);
181 void DUMP_BNODE(BNode *dir) argument
193 dir->RewindAttrs();
194 while (dir->GetNextAttrName(buffer1) == B_NO_ERROR) {
195 dir->GetAttrInfo(buffer1, &info);
198 dir->ReadAttr(buffer1, info.type, 0, buffer2, sizeof(buffer2));
202 dir->ReadAttr(buffer1, info.type, 0, buffer2, sizeof(buffer2));
206 dir->ReadAttr(buffer1, info.type, 0, &i, sizeof(i));
210 dir
[all...]
H A DPrinterData.cpp78 BDirectory dir(&nref);
79 if (dir.InitCheck() != B_OK)
82 BPath path0(&dir, ".");
/haiku-fatelf/headers/build/os/storage/
H A DDirectory.h35 BDirectory(const BDirectory &dir);
40 BDirectory(const BDirectory *dir, const char *path);
48 status_t SetTo(const BDirectory *dir, const char *path);
67 status_t CreateDirectory(const char *path, BDirectory *dir);
73 BDirectory &operator=(const BDirectory &dir);
/haiku-fatelf/headers/os/storage/
H A DDirectory.h22 BDirectory(const BDirectory &dir);
27 BDirectory(const BDirectory *dir, const char *path);
35 status_t SetTo(const BDirectory *dir, const char *path);
56 status_t CreateDirectory(const char *path, BDirectory *dir);
62 BDirectory &operator=(const BDirectory &dir);
H A DPath.h26 BPath(const char* dir, const char* leaf = NULL,
28 BPath(const BDirectory* dir,
40 status_t SetTo(const BDirectory* dir,
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dspell.c107 mindist(dir, guess, best)
108 char *dir;
117 if (*dir == '\0')
118 dir = ".";
120 if ((fd = opendir(dir)) == NULL)
/haiku-fatelf/src/libs/ncurses/test/
H A Dlrtest.c16 int y, x, mode, dir, inc; member in struct:__anon4876
32 m->inc = -m->dir * m->inc;
37 m->inc = -m->dir * m->inc;
45 m->inc = m->dir * m->inc;
50 m->inc = m->dir * m->inc;
/haiku-fatelf/src/preferences/mail/
H A DFilterAddonList.cpp15 FilterAddonList::FilterAddonList(direction dir, bool loadOnStart) argument
17 fDirection(dir)
45 BDirectory dir(path.Path());
46 if (dir.InitCheck() != B_OK)
49 while (dir.GetNextEntry(&entry) != B_ENTRY_NOT_FOUND)
/haiku-fatelf/src/add-ons/print/drivers/postscript/
H A DSelectPPDDlg.cpp103 BDirectory dir; local
109 && dir.SetTo(path.Path()) == B_OK) {
111 while (dir.GetNextEntry(&entry) == B_OK)
124 BDirectory dir; local
138 && dir.SetTo(path.Path()) == B_OK) {
140 while (dir.GetNextEntry(&entry) == B_OK)
142 PPDParser parser(dir, name);
/haiku-fatelf/src/add-ons/print/transports/ipp/
H A DIppTransport.cpp41 BDirectory dir(spool_path);
42 DUMP_BDIRECTORY(&dir);
44 dir.ReadAttr(IPP_URL, B_STRING_TYPE, 0, __url, sizeof(__url));
46 IppSetupDlg *dlg = new IppSetupDlg(&dir);
53 dir.ReadAttr(IPP_URL, B_STRING_TYPE, 0, __url, sizeof(__url));
54 dir.ReadAttr(IPP_JOB_ID, B_INT32_TYPE, 0, &__jobid, sizeof(__jobid));
59 dir.WriteAttr(IPP_JOB_ID, B_INT32_TYPE, 0, &__jobid, sizeof(__jobid));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/AuthLib/
H A Dbesure_auth.c152 DIR *dir; local
173 dir = opendir(path);
174 if (dir)
176 while ((dirInfo = readdir(dir)) != NULL)
183 closedir(dir);
440 DIR *dir; local
454 dir = opendir(folder);
455 if (dir)
457 while ((dirInfo = readdir(dir)) != NULL)
464 closedir(dir);
482 ReadUser(DIR *dir) argument
498 CloseUsers(DIR *dir) argument
518 ReadGroup(DIR *dir) argument
534 CloseGroups(DIR *dir) argument
555 ReadGroupMember(DIR *dir) argument
571 CloseGroup(DIR *dir) argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/transport/
H A Dbeserved_transport.cpp45 dir.SetTo(spool_path);
47 dir.ReadAttr(SERVER_NAME, B_STRING_TYPE, 0, server, sizeof(server));
48 dir.ReadAttr(PRINTER_NAME, B_STRING_TYPE, 0, printerName, sizeof(printerName));
49 dir.ReadAttr(USER_NAME, B_STRING_TYPE, 0, user, sizeof(user));
50 dir.ReadAttr(USER_PASSWORD, B_STRING_TYPE, 0, password, sizeof(password));
157 dir.WriteAttr(USER_NAME, B_STRING_TYPE, 0, user, sizeof(user));
158 dir.WriteAttr(USER_PASSWORD, B_STRING_TYPE, 0, password, sizeof(password));
/haiku-fatelf/src/bin/coreutils/
H A Dbootstrap459 # Download *.po files into this dir.
611 dir=$1
615 grep -F "/$file/" $dir/CVS/Entries 2>/dev/null |
618 git rm -n "$dir/$file" > /dev/null 2>&1 && found=yes
620 svn log -r HEAD "$dir/$file" > /dev/null 2>&1 && found=yes
622 echo "$0: no version control for $dir/$file?" >&2
628 for dir in . `(cd $1 && find * -type d -print)`; do
631 for file in `ls -a $1/$dir`; do
636 test -d $1/$dir/$file && continue
638 test "$dir/
[all...]
/haiku-fatelf/src/add-ons/print/transports/shared/
H A DDbgMsg.cpp183 void DUMP_BDIRECTORY(BDirectory *dir) argument
195 dir->RewindAttrs();
196 while (dir->GetNextAttrName(buffer1) == B_NO_ERROR) {
197 dir->GetAttrInfo(buffer1, &info);
200 dir->ReadAttr(buffer1, info.type, 0, buffer2, sizeof(buffer2));
204 dir->ReadAttr(buffer1, info.type, 0, buffer2, sizeof(buffer2));
208 dir->ReadAttr(buffer1, info.type, 0, &i, sizeof(i));
212 dir->ReadAttr(buffer1, info.type, 0, &f, sizeof(f));
216 dir->ReadAttr(buffer1, info.type, 0, &rc, sizeof(rc));
220 dir
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dprintf-parse.c88 size_t d_allocated; /* allocated elements of d->dir */
95 d->dir = (DIRECTIVE *) malloc (d_allocated * sizeof (DIRECTIVE));
96 if (d->dir == NULL)
142 DIRECTIVE *dp = &d->dir[d->count]; /* pointer to next directive */
587 memory = (DIRECTIVE *) realloc (d->dir, memory_size);
591 d->dir = memory;
602 d->dir[d->count].dir_start = cp;
611 if (d->dir)
612 free (d->dir);
619 if (d->dir)
[all...]
/haiku-fatelf/src/bin/network/wget/md5/
H A DMakefile.am12 # Reproduce by: gnulib-tool --import --dir=. --lib=libmd5 --source-base=md5 --m4-base=md5/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --no-libtool --macro-prefix=md5 crypto/md5
188 @for dir in '' $(MOSTLYCLEANDIRS); do \
189 if test -n "$$dir" && test -d $$dir; then \
190 echo "rmdir $$dir"; rmdir $$dir; \
/haiku-fatelf/src/libs/print/libgutenprint/src/foomatic/
H A DMakefile.am105 for dir in $(DISTDIRS) ; do \
106 if test -d $(srcdir)/$$dir ; then \
107 mkdir $(distdir)/$$dir; \
108 for dirfile in $(srcdir)/$$dir/*.xml; do \
110 cp -p $$dirfile $(distdir)/$$dir; \
/haiku-fatelf/src/kits/storage/
H A DDirectory.cpp37 BDirectory::BDirectory(const BDirectory& dir) argument
41 *this = dir;
77 BDirectory::BDirectory(const BDirectory* dir, const char* path) argument
81 SetTo(dir, path);
104 // open dir
112 // set close on exec flag on dir FD
146 // open dir
154 // set close on exec flag on dir FD
169 // open dir
177 // set close on exec flag on dir F
185 SetTo(const BDirectory* dir, const char* path) argument
412 CreateDirectory(const char* path, BDirectory* dir) argument
481 operator =(const BDirectory& dir) argument
[all...]
/haiku-fatelf/src/bin/coreutils/src/
H A Dmkdir.c101 announce_mkdir (char const *dir, void *options) argument
105 prog_fprintf (stdout, o->created_directory_format, quote (dir));
114 make_ancestor (char const *dir, char const *component, void *options) argument
121 announce_mkdir (dir, options);
128 process_dir (char *dir, struct savewd *wd, void *options) argument
131 return (make_dir_parents (dir, wd, o->make_ancestor_function, options,

Completed in 221 milliseconds

1234567891011>>