OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPipeFd
(Results
1 - 4
of
4
) sorted by null
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
PipeComm.cpp
39
mPipeFd
= -1;
52
mPipeFd
= fd;
61
numBytes = qemu_pipe_frame_recv(
mPipeFd
, msg.data(), msg.size());
69
ALOGD("%s: Connection terminated on pipe %d, numBytes=%d", __FUNCTION__,
mPipeFd
, numBytes);
72
mPipeFd
= -1;
84
if (
mPipeFd
!= -1) {
85
retVal = qemu_pipe_frame_send(
mPipeFd
, data.data(), data.size());
91
ALOGE("%s: send_cmd: (fd=%d): ERROR: %s", __FUNCTION__,
mPipeFd
, strerror(errno));
PipeComm.h
65
int
mPipeFd
;
/frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp
802
mPipeFd
[0] =
mPipeFd
[1] = -1;
814
int res = pipe(
mPipeFd
);
816
mPipeFd
[0] =
mPipeFd
[1] = -1;
827
close(
mPipeFd
[0]);
828
close(
mPipeFd
[1]);
829
mPipeFd
[0] =
mPipeFd
[1] = -1;
848
close(
mPipeFd
[0])
[
all
...]
/frameworks/av/media/libstagefright/include/foundation/
ANetworkSession.h
105
int
mPipeFd
[2];
Completed in 355 milliseconds