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

  /system/core/adb/sysdeps/
stat.h 26 int adb_stat(const char* path, struct adb_stat* buf);
28 // We later define a macro mapping 'stat' to 'adb_stat'. This causes:
32 // struct adb_stat s;
33 // adb_stat(filename, &s);
34 // To get this to work, we need to make 'struct adb_stat' the same as
35 // 'struct stat'. Note that this definition of 'struct adb_stat' uses the
38 struct adb_stat : public stat {}; struct in inherits:stat
41 #define stat adb_stat
44 #define lstat adb_stat
    [all...]
  /system/core/adb/sysdeps/win32/
stat.cpp 29 int adb_stat(const char* path, struct adb_stat* s) { function
55 struct adb_stat st;

Completed in 61 milliseconds