Home
last modified time | relevance | path

Searched refs:sync_writer (Results 1 – 8 of 8) sorted by relevance

/external/qemu/android/protocol/
Duser-events-proxy.c31 SyncSocket* sync_writer; member
52 res = syncsocket_start_write(_userEventsProxy.sync_writer); in _userEventsProxy_send()
55 res = syncsocket_write(_userEventsProxy.sync_writer, &header, in _userEventsProxy_send()
60 res = syncsocket_write(_userEventsProxy.sync_writer, event_param, in _userEventsProxy_send()
65 syncsocket_stop_write(_userEventsProxy.sync_writer); in _userEventsProxy_send()
91 _userEventsProxy.sync_writer = syncsocket_init(_userEventsProxy.sock); in userEventsProxy_create()
92 if (_userEventsProxy.sync_writer == NULL) { in userEventsProxy_create()
114 if (_userEventsProxy.sync_writer != NULL) { in userEventsProxy_destroy()
115 syncsocket_close(_userEventsProxy.sync_writer); in userEventsProxy_destroy()
116 syncsocket_free(_userEventsProxy.sync_writer); in userEventsProxy_destroy()
[all …]
Dui-commands-proxy.c37 SyncSocket* sync_writer; member
74 int status = syncsocket_start_write(_uiCmdProxy.sync_writer); in _uiCmdProxy_send_command()
79 status = syncsocket_write(_uiCmdProxy.sync_writer, &header, sizeof(header), in _uiCmdProxy_send_command()
83 status = syncsocket_write(_uiCmdProxy.sync_writer, cmd_param, in _uiCmdProxy_send_command()
88 syncsocket_stop_write(_uiCmdProxy.sync_writer); in _uiCmdProxy_send_command()
169 _uiCmdProxy.sync_writer = syncsocket_init(fd); in uiCmdProxy_create()
170 if (_uiCmdProxy.sync_writer == NULL) { in uiCmdProxy_create()
189 if (_uiCmdProxy.sync_writer != NULL) { in uiCmdProxy_destroy()
190 syncsocket_close(_uiCmdProxy.sync_writer); in uiCmdProxy_destroy()
191 syncsocket_free(_uiCmdProxy.sync_writer); in uiCmdProxy_destroy()
Dcore-commands-proxy.c38 SyncSocket* sync_writer; member
64 status = syncsocket_start_write(_coreCmdProxy.sync_writer); in _coreCmdProxy_send_command()
67 status = syncsocket_write(_coreCmdProxy.sync_writer, &header, in _coreCmdProxy_send_command()
72 status = syncsocket_write(_coreCmdProxy.sync_writer, cmd_param, in _coreCmdProxy_send_command()
77 syncsocket_stop_write(_coreCmdProxy.sync_writer); in _coreCmdProxy_send_command()
330 _coreCmdProxy.sync_writer = syncsocket_init(_coreCmdProxy.sock); in coreCmdProxy_create()
331 if (_coreCmdProxy.sync_writer == NULL) { in coreCmdProxy_create()
361 if (_coreCmdProxy.sync_writer != NULL) { in coreCmdProxy_destroy()
362 syncsocket_close(_coreCmdProxy.sync_writer); in coreCmdProxy_destroy()
363 syncsocket_free(_coreCmdProxy.sync_writer); in coreCmdProxy_destroy()
[all …]
Dcore-commands-impl.c53 SyncSocket* sync_writer; member
132 int status = syncsocket_start_write(corecmd->sync_writer); in _coreCmdImpl_respond()
135 status = syncsocket_write(corecmd->sync_writer, resp, in _coreCmdImpl_respond()
140 status = syncsocket_write(corecmd->sync_writer, resp_data, in _coreCmdImpl_respond()
145 syncsocket_stop_write(corecmd->sync_writer); in _coreCmdImpl_respond()
414 _coreCmdImpl.sync_writer = syncsocket_init(fd); in coreCmdImpl_create()
415 if (_coreCmdImpl.sync_writer == NULL) { in coreCmdImpl_create()
428 if (_coreCmdImpl.sync_writer != NULL) { in coreCmdImpl_destroy()
429 syncsocket_close(_coreCmdImpl.sync_writer); in coreCmdImpl_destroy()
430 syncsocket_free(_coreCmdImpl.sync_writer); in coreCmdImpl_destroy()
/external/chromium_org/media/audio/
Daudio_input_controller.cc34 SyncWriter* sync_writer, in AudioInputController() argument
41 sync_writer_(sync_writer), in AudioInputController()
90 SyncWriter* sync_writer, in CreateLowLatency() argument
93 DCHECK(sync_writer); in CreateLowLatency()
101 new AudioInputController(event_handler, sync_writer, user_input_monitor)); in CreateLowLatency()
120 SyncWriter* sync_writer, in CreateForStream() argument
122 DCHECK(sync_writer); in CreateForStream()
128 new AudioInputController(event_handler, sync_writer, user_input_monitor)); in CreateForStream()
Dtest_audio_input_controller_factory.cc15 SyncWriter* sync_writer, in TestAudioInputController() argument
17 : AudioInputController(event_handler, sync_writer, user_input_monitor), in TestAudioInputController()
Daudio_input_controller.h159 SyncWriter* sync_writer,
172 SyncWriter* sync_writer,
219 SyncWriter* sync_writer,
Dtest_audio_input_controller_factory.h60 SyncWriter* sync_writer,