OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dev_fd
(Results
1 - 5
of
5
) sorted by null
/hardware/invensense/libsensors/
SensorBase.cpp
37
dev_fd
(-1), data_fd(-1)
48
if (
dev_fd
>= 0) {
49
close(
dev_fd
);
54
if (
dev_fd
<0 && dev_name) {
55
dev_fd
= open(dev_name, O_RDONLY);
56
LOGE_IF(
dev_fd
<0, "Couldn't open %s (%s)", dev_name, strerror(errno));
62
if (
dev_fd
>= 0) {
63
close(
dev_fd
);
64
dev_fd
= -1;
71
return
dev_fd
;
[
all
...]
SensorBase.h
35
int
dev_fd
;
member in class:SensorBase
/system/extras/tests/iptables/qtaguid/
socketTag.cpp
190
int
dev_fd
= -1;
local
226
dev_fd
= open("/dev/xt_qtaguid", O_RDONLY);
227
if (
dev_fd
< 0) {
472
if (
dev_fd
>= 0) {
473
close(
dev_fd
);
487
int
dev_fd
= -1;
local
523
dev_fd
= open("/dev/xt_qtaguid", O_RDONLY);
524
if (
dev_fd
< 0) {
686
if (
dev_fd
>= 0) {
687
close(
dev_fd
);
[
all
...]
/external/ppp/pppd/
pppd.h
593
void generic_disestablish_ppp __P((int
dev_fd
)); /* Restore device setting */
594
int generic_establish_ppp __P((int
dev_fd
)); /* Make a ppp interface */
[
all
...]
sys-linux.c
590
void generic_disestablish_ppp(int
dev_fd
)
[
all
...]
Completed in 174 milliseconds