HomeSort by relevance Sort by last modified time
    Searched refs:sync_writer (Results 1 - 4 of 4) sorted by null

  /external/qemu/android/protocol/
user-events-proxy.c 31 SyncSocket* sync_writer; member in struct:UserEventsProxy
52 res = syncsocket_start_write(_userEventsProxy.sync_writer);
55 res = syncsocket_write(_userEventsProxy.sync_writer, &header,
60 res = syncsocket_write(_userEventsProxy.sync_writer, event_param,
65 syncsocket_stop_write(_userEventsProxy.sync_writer);
91 _userEventsProxy.sync_writer = syncsocket_init(_userEventsProxy.sock);
92 if (_userEventsProxy.sync_writer == NULL) {
114 if (_userEventsProxy.sync_writer != NULL) {
115 syncsocket_close(_userEventsProxy.sync_writer);
116 syncsocket_free(_userEventsProxy.sync_writer);
    [all...]
ui-commands-proxy.c 37 SyncSocket* sync_writer; member in struct:UICmdProxy
74 int status = syncsocket_start_write(_uiCmdProxy.sync_writer);
79 status = syncsocket_write(_uiCmdProxy.sync_writer, &header, sizeof(header),
83 status = syncsocket_write(_uiCmdProxy.sync_writer, cmd_param,
88 syncsocket_stop_write(_uiCmdProxy.sync_writer);
169 _uiCmdProxy.sync_writer = syncsocket_init(fd);
170 if (_uiCmdProxy.sync_writer == NULL) {
189 if (_uiCmdProxy.sync_writer != NULL) {
190 syncsocket_close(_uiCmdProxy.sync_writer);
191 syncsocket_free(_uiCmdProxy.sync_writer);
    [all...]
core-commands-proxy.c 38 SyncSocket* sync_writer; member in struct:CoreCmdProxy
64 status = syncsocket_start_write(_coreCmdProxy.sync_writer);
67 status = syncsocket_write(_coreCmdProxy.sync_writer, &header,
72 status = syncsocket_write(_coreCmdProxy.sync_writer, cmd_param,
77 syncsocket_stop_write(_coreCmdProxy.sync_writer);
330 _coreCmdProxy.sync_writer = syncsocket_init(_coreCmdProxy.sock);
331 if (_coreCmdProxy.sync_writer == NULL) {
361 if (_coreCmdProxy.sync_writer != NULL) {
362 syncsocket_close(_coreCmdProxy.sync_writer);
363 syncsocket_free(_coreCmdProxy.sync_writer);
    [all...]
core-commands-impl.c 53 SyncSocket* sync_writer; member in struct:CoreCmdImpl
132 int status = syncsocket_start_write(corecmd->sync_writer);
135 status = syncsocket_write(corecmd->sync_writer, resp,
140 status = syncsocket_write(corecmd->sync_writer, resp_data,
145 syncsocket_stop_write(corecmd->sync_writer);
414 _coreCmdImpl.sync_writer = syncsocket_init(fd);
415 if (_coreCmdImpl.sync_writer == NULL) {
428 if (_coreCmdImpl.sync_writer != NULL) {
429 syncsocket_close(_coreCmdImpl.sync_writer);
430 syncsocket_free(_coreCmdImpl.sync_writer);
    [all...]

Completed in 30 milliseconds