HomeSort by relevance Sort by last modified time
    Searched refs:stbuf (Results 1 - 19 of 19) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/cdrom/freebsd/
SDL_syscdrom.c 63 static int CheckDrive(char *drive, struct stat *stbuf)
69 if ( stat(drive, stbuf) < 0 ) {
75 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
97 static void AddDrive(char *drive, struct stat *stbuf)
106 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
121 SDL_cdmode[i] = stbuf->st_rdev;
139 struct stat stbuf; local
167 if ( CheckDrive(SDLcdrom, &stbuf) > 0 ) {
168 AddDrive(SDLcdrom, &stbuf);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/openbsd/
SDL_syscdrom.c 66 static int CheckDrive(char *drive, struct stat *stbuf)
72 if ( stat(drive, stbuf) < 0 ) {
78 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
102 static void AddDrive(char *drive, struct stat *stbuf)
111 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
126 SDL_cdmode[i] = stbuf->st_rdev;
148 struct stat stbuf; local
176 if ( CheckDrive(SDLcdrom, &stbuf) > 0 ) {
177 AddDrive(SDLcdrom, &stbuf);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/qnx/
SDL_syscdrom.c 64 static int CheckDrive(char *drive, struct stat *stbuf)
75 if (stat(drive, stbuf) < 0)
83 if (S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode))
110 static void AddDrive(char *drive, struct stat *stbuf)
121 if (stbuf->st_rdev == SDL_cdmode[i])
136 SDL_cdmode[i] = stbuf->st_rdev;
149 struct stat stbuf; local
186 if (CheckDrive(SDLcdrom, &stbuf) > 0)
188 AddDrive(SDLcdrom, &stbuf);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/aix/
SDL_syscdrom.c 70 static int CheckDrive(char *drive, struct stat *stbuf)
78 if ( stat(drive, stbuf) < 0 ) {
84 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
111 static void AddDrive(char *drive, struct stat *stbuf)
120 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
135 SDL_cdmode[i] = stbuf->st_rdev;
198 struct stat stbuf; local
206 if ( CheckDrive( text, &stbuf) > 0)
208 AddDrive( text, &stbuf);
230 struct stat stbuf; local
289 struct stat stbuf; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/linux/
SDL_syscdrom.c 119 static int CheckDrive(char *drive, char *mnttype, struct stat *stbuf)
125 if ( stat(drive, stbuf) < 0 ) {
131 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
154 static void AddDrive(char *drive, struct stat *stbuf)
163 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
178 SDL_cdmode[i] = stbuf->st_rdev;
191 struct stat stbuf; local
247 if (CheckDrive(mnt_dev, mnt_type, &stbuf) > 0) {
248 AddDrive(mnt_dev, &stbuf);
268 struct stat stbuf; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
SDL_syscdrom.c 189 static int CheckDrive(char *drive, struct stat *stbuf)
195 if ( stat(drive, stbuf) < 0 ) {
211 static void AddDrive(char *drive, struct stat *stbuf)
220 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
235 SDL_cdmode[i] = stbuf->st_rdev;
252 struct stat stbuf; local
280 if ( CheckDrive(SDLcdrom, &stbuf) > 0 ) {
281 AddDrive(SDLcdrom, &stbuf);
309 switch (CheckDrive(drive, &stbuf)) {
312 AddDrive(drive, &stbuf);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/osf/
SDL_syscdrom.c 61 static int CheckDrive(char *drive, struct stat *stbuf)
76 if ( stat(drive, stbuf) < 0 ) {
104 static void AddDrive(char *drive, struct stat *stbuf)
114 if ( stbuf->st_rdev == SDL_cdmode[i] ) {
129 SDL_cdmode[i] = stbuf->st_rdev;
158 struct stat stbuf; local
187 if ( CheckDrive(SDLcdrom, &stbuf) > 0 ) {
188 AddDrive(SDLcdrom, &stbuf);
220 if ( CheckDrive(drive, &stbuf) > 0 )
221 AddDrive(drive, &stbuf);
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fuse_fs_test.cc 65 int testfs_getattr(const char* path, struct stat* stbuf) {
66 memset(stbuf, 0, sizeof(struct stat));
69 stbuf->st_mode = S_IFDIR | 0755;
77 stbuf->st_mode = S_IFREG | 0666;
78 stbuf->st_size = file->data.size();
  /external/e2fsprogs/util/
subst.c 309 struct stat stbuf; local
378 if (stat(outfn, &stbuf) == 0) {
381 ut.actime = stbuf.st_atime;
symlinks.c 166 struct stat stbuf, lstbuf; local
190 if (stat(abspath, &stbuf) == -1) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-minimal.c 217 struct stat stbuf; local
225 if (fstat(fd, &stbuf) < 0)
228 buf_size = stbuf.st_size;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 56 const struct stat* stbuf,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.h 111 const struct stat* stbuf,
fuse_fs.cc 426 const struct stat* stbuf,
430 // It is OK for the FUSE filesystem to pass a NULL stbuf. In that case, just
432 ino_t ino = stbuf ? stbuf->st_ino : 1;
  /external/iputils/
tftpd.c 284 struct stat stbuf; local
306 if (stat(filename, &stbuf) < 0) {
311 if ((stbuf.st_mode&(S_IREAD >> 6)) == 0) {
316 if ((stbuf.st_mode&(S_IWRITE >> 6)) == 0) {
  /external/mksh/src/
check.pl 1226 local(@stbuf);
1240 @stbuf = lstat($name);
1241 if (!@stbuf) {
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
pnacl_coordinator.cc 215 struct nacl_abi_stat stbuf; local
219 Fstat)(desc, &stbuf))) {
222 size_t nexe_size = stbuf.nacl_abi_st_size;
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/
SDL_syscdrom.cc 84 struct stat stbuf; local
89 if ( stat(drive, &stbuf) < 0 ) {
  /ndk/sources/host-tools/make-3.81/
read.c 2832 stat_t stbuf; local
2834 struct stat stbuf; local
    [all...]

Completed in 763 milliseconds