OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:trace_fd
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/src/utils/
wpa_debug.c
126
int mounts,
trace_fd
;
local
166
trace_fd
= open(buf, O_WRONLY);
167
if (
trace_fd
< 0) {
171
wpa_debug_tracing_file = fdopen(
trace_fd
, "w");
173
close(
trace_fd
);
/system/extras/ANRdaemon/
ANRdaemon.cpp
365
int
trace_fd
= open(dfs_trace_output_path, O_RDWR);
local
366
if (
trace_fd
== -1) {
380
close(
trace_fd
);
395
result = read(
trace_fd
, in, bufSize);
442
close(
trace_fd
);
/art/runtime/
trace.cc
308
void Trace::Start(const char* trace_filename, int
trace_fd
, size_t buffer_size, int flags,
330
if (
trace_fd
< 0) {
333
trace_file.reset(new File(
trace_fd
, "tracefile"));
[
all
...]
trace.h
115
static void Start(const char* trace_filename, int
trace_fd
, size_t buffer_size, int flags,
Completed in 759 milliseconds