Lines Matching refs:adb_stat
310 // We later define a macro mapping 'stat' to 'adb_stat'. This causes:
314 // struct adb_stat s;
315 // adb_stat(filename, &s);
316 // To get this to work, we need to make 'struct adb_stat' the same as
317 // 'struct stat'. Note that this definition of 'struct adb_stat' uses the
320 struct adb_stat : public stat {};
322 static_assert(sizeof(struct adb_stat) == sizeof(struct stat),
325 extern int adb_stat(const char* f, struct adb_stat* s);
329 #define stat adb_stat