HomeSort by relevance Sort by last modified time
    Searched refs:stbuf (Results 1 - 12 of 12) 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/e2fsprogs/util/
subst.c 312 struct stat stbuf; local
381 if (stat(outfn, &stbuf) == 0) {
384 ut.actime = stbuf.st_atime;
  /external/mksh/src/
check.pl 1197 local(@stbuf);
1211 @stbuf = lstat($name);
1212 if (!@stbuf) {
1216 if ($perm ne '*' && ($stbuf[2] & 07777) != $perm) {
1219 $perm, $stbuf[2] & 07777);
1221 if ($uid ne '*' && $stbuf[4] != $uid) {
1224 $uid, $stbuf[4]);
1226 if ($gid ne '*' && $stbuf[5] != $gid) {
1229 $gid, $stbuf[5]);
    [all...]
  /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...]
  /external/dbus/bus/
bus.c 314 DBusStat stbuf; local
318 if (_dbus_stat (&u, &stbuf, NULL))
    [all...]

Completed in 107 milliseconds