Searched defs:logfile_fd (Results 1 - 1 of 1) sorted by relevance

/system/bt/hci/src/
H A Dbtsnoop.c55 static int logfile_fd = INVALID_FD; variable
108 if (logfile_fd == INVALID_FD)
174 logfile_fd = open(log_path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
175 if (logfile_fd == INVALID_FD) {
181 write(logfile_fd, "btsnoop\0\0\0\0\1\0\0\x3\xea", 16);
183 if (logfile_fd != INVALID_FD)
184 close(logfile_fd);
186 logfile_fd = INVALID_FD;
192 if (logfile_fd != INVALID_FD)
193 write(logfile_fd, dat
[all...]

Completed in 1781 milliseconds