OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adb_stat
(Results
1 - 2
of
2
) sorted by null
/system/core/adb/
sysdeps.h
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 {};
struct in inherits: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
[
all
...]
sysdeps_win32.cpp
2302
int
adb_stat
(const char* path, struct
adb_stat
* s) {
function
[
all
...]
Completed in 138 milliseconds