Searched refs:sync_writer (Results 1 – 8 of 8) sorted by relevance
/external/qemu/android/protocol/ |
D | user-events-proxy.c | 31 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 …]
|
D | ui-commands-proxy.c | 37 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()
|
D | core-commands-proxy.c | 38 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 …]
|
D | core-commands-impl.c | 53 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/ |
D | audio_input_controller.cc | 34 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()
|
D | test_audio_input_controller_factory.cc | 15 SyncWriter* sync_writer, in TestAudioInputController() argument 17 : AudioInputController(event_handler, sync_writer, user_input_monitor), in TestAudioInputController()
|
D | audio_input_controller.h | 159 SyncWriter* sync_writer, 172 SyncWriter* sync_writer, 219 SyncWriter* sync_writer,
|
D | test_audio_input_controller_factory.h | 60 SyncWriter* sync_writer,
|