Home
last modified time | relevance | path

Searched refs:dirent (Results 1 – 25 of 82) sorted by relevance

1234

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvdial/
H A Dmusl-support.patch14 static int filesort(const dirent **e1, const dirent **e2)
20 - dirent const * const *e1 = (dirent const * const *)_e1;
21 - dirent const * const *e2 = (dirent const * const *)_e2;
/openbmc/openbmc/poky/meta/recipes-kernel/kexec/kexec-tools/
H A D0001-ppc-fs2dt-Match-function-signatures.patch9 …*, const void *)' to parameter of type 'int (*)(const struct dirent **, const struct dirent **)' […
23 @@ -292,7 +292,7 @@ static void putprops(char *fn, struct dirent **nlist, int numlist)
28 +static int comparefunc(const struct dirent ** dentry1, const struct dirent **dentry2)
30 char *str1 = (*(struct dirent **)dentry1)->d_name;
31 char *str2 = (*(struct dirent **)dentry2)->d_name;
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/
H A D0001-Fix-Wincompatible-function-pointer-types.patch8 …e function pointer types passing 'int (struct dirent *)' to parameter of type 'int (*)(const struc…
11 …d/tmp/work/riscv64-yoe-linux/uw-imap/2007f-r0/recipe-sysroot/usr/include/dirent.h:259:13: note: pa…
12 int (*__selector) (const struct dirent *),
14 …*, const void *)' to parameter of type 'int (*)(const struct dirent **, const struct dirent **)' […
37 +int mh_numsort (const struct dirent **d1,const struct dirent **d2);
55 +int mh_numsort (const struct dirent **d1,const struct dirent **d2)
79 +int mix_msgfsort (const struct dirent **d1,const struct dirent **d2);
106 +int mix_msgfsort (const struct dirent **d1,const struct dirent **d2)
121 +int mx_numsort (const struct dirent **d1,const struct dirent **d2);
139 +int mx_numsort (const struct dirent **d1,const struct dirent **d2)
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/breakpad/breakpad/
H A D0003-Fix-conflict-between-musl-libc-dirent.h-and-lss.patch4 Subject: [PATCH 3/3] Fix conflict between musl libc <dirent.h> and lss
6 Include <dirent.h> late to avoid the macro getdents64 in musl
7 libc's <dirent.h> to conflict with linux_sycall_support.h.
20 -#include <dirent.h>
28 +#include <dirent.h>
/openbmc/qemu/hw/9pfs/
H A D9p-util.h220 static inline off_t qemu_dirent_off(struct dirent *dent) in qemu_dirent_off()
240 static inline struct dirent *qemu_dirent_dup(struct dirent *dent) in qemu_dirent_dup()
253 sz = offsetof(struct dirent, d_name) + in qemu_dirent_dup()
H A Dcodir.c32 static int do_readdir(V9fsPDU *pdu, V9fsFidState *fidp, struct dirent **dent) in do_readdir()
36 struct dirent *entry; in do_readdir()
54 struct dirent **dent) in v9fs_co_readdir()
81 struct dirent *dent; in do_readdir_many()
H A D9p-synth.c220 struct dirent *entry, off_t off) in synth_direntry()
227 g_assert(sizeof(struct dirent) + NAME_MAX >= in synth_direntry()
228 offsetof(struct dirent, d_name) + sz); in synth_direntry()
238 static struct dirent *synth_get_dentry(V9fsSynthNode *dir, in synth_get_dentry()
239 struct dirent *entry, off_t off) in synth_get_dentry()
261 static struct dirent *synth_readdir(FsContext *ctx, V9fsFidOpenState *fs) in synth_readdir()
263 struct dirent *entry; in synth_readdir()
H A D9p-synth.h43 struct dirent dent;
/openbmc/openbmc/poky/meta/recipes-extended/zip/zip-3.0/
H A D0001-configure-Include-dirent.h-for-closedir-opendir-APIs.patch4 Subject: [PATCH] configure: Include dirent.h for closedir/opendir APIs
12 due to missing signatures which come from dirent.h
39 +#include <dirent.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/files/
H A D0002-Drop-using-_LARGEFILE64_SOURCE.patch44 #include <dirent.h>
68 #include <dirent.h>
80 #include <dirent.h>
92 #include <dirent.h>
116 #include <dirent.h>
128 #include <dirent.h>
140 #include <dirent.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0016-pass-correct-parameters-to-getdents64.patch7 …passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'struct dirent *' [-Werror,-Winco…
11 …on at ../git/src/basic/stat-util.c:78:9) *' to parameter of type 'struct dirent *' [-Werror,-Winco…
31 + n = getdents64(dir_fd, (struct dirent*)((uint8_t*) de->buffer + de->buffer_size), …
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0016-pass-correct-parameters-to-getdents64.patch7 …passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'struct dirent *' [-Werror,-Winco…
11 …on at ../git/src/basic/stat-util.c:78:9) *' to parameter of type 'struct dirent *' [-Werror,-Winco…
31 + n = getdents64(dir_fd, (struct dirent*)((uint8_t*) de->buffer + de->buffer_size), …
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0010-Include-dirent.h-for-ino_t.patch4 Subject: [PATCH] Include dirent.h for ino_t
27 +#include <dirent.h>
/openbmc/u-boot/fs/fat/
H A Dfat_write.c53 static void set_name(dir_entry *dirent, const char *filename) in set_name() argument
80 memcpy(dirent->name, s_name, period_location); in set_name()
82 dirent->name[i] = ' '; in set_name()
84 memcpy(dirent->name, s_name, period_location); in set_name()
86 memcpy(dirent->name, s_name, 6); in set_name()
87 dirent->name[6] = '~'; in set_name()
88 dirent->name[7] = '1'; in set_name()
92 memcpy(dirent->ext, s_name + period_location + 1, ext_num); in set_name()
94 dirent->ext[i] = ' '; in set_name()
96 memcpy(dirent->ext, s_name + period_location + 1, 3); in set_name()
[all …]
H A Dfat.c120 static void get_name(dir_entry *dirent, char *s_name) in get_name() argument
124 memcpy(s_name, dirent->name, 8); in get_name()
129 if (dirent->lcase & CASE_LOWER_BASE) in get_name()
131 if (dirent->ext[0] && dirent->ext[0] != ' ') { in get_name()
133 memcpy(ptr, dirent->ext, 3); in get_name()
134 if (dirent->lcase & CASE_LOWER_EXT) in get_name()
1194 struct fs_dirent dirent; member
1230 struct fs_dirent *dent = &dir->dirent; in fat_readdir()
/openbmc/openbmc/poky/meta/recipes-extended/net-tools/net-tools/
H A DAdd_missing_headers.patch11 #include <dirent.h>
/openbmc/qemu/util/
H A Ddrm.c26 struct dirent *e; in qemu_drm_rendernode_open()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/mg/mg/
H A D0001-fileio-Include-sys-param.h-for-MAXNAMLEN.patch20 #include <dirent.h>
/openbmc/openbmc/poky/meta/recipes-devtools/unfs3/unfs3/
H A D0001-fix-building-on-macOS.patch19 #include <dirent.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/
H A D0008-include-linux-limits.h-for-MAX_INPUT.patch26 #include <dirent.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0007-adb-usb_linux.c-fix-build-with-glibc-2.28.patch24 #include <dirent.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0004-include-limits.h.patch22 #include <dirent.h>
/openbmc/u-boot/fs/ext4/
H A Dext4_common.c2025 struct ext2_dirent dirent; in ext4fs_iterate_dir() local
2029 (char *)&dirent, &actread); in ext4fs_iterate_dir()
2033 if (dirent.direntlen == 0) { in ext4fs_iterate_dir()
2038 if (dirent.namelen != 0) { in ext4fs_iterate_dir()
2039 char filename[dirent.namelen + 1]; in ext4fs_iterate_dir()
2046 dirent.namelen, filename, in ext4fs_iterate_dir()
2056 fdiro->ino = le32_to_cpu(dirent.inode); in ext4fs_iterate_dir()
2058 filename[dirent.namelen] = '\0'; in ext4fs_iterate_dir()
2060 if (dirent.filetype != FILETYPE_UNKNOWN) { in ext4fs_iterate_dir()
2063 if (dirent.filetype == FILETYPE_DIRECTORY) in ext4fs_iterate_dir()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/i2cdev/i2cdev/
H A Dfix-musl.patch36 #include <dirent.h>
70 #include <dirent.h>
/openbmc/u-boot/scripts/dtc/
H A Dfstree.c29 struct dirent *de; in read_fstree()

1234