/foundation/multimodalinput/input/tools/event_inject/src/ |
H A D | processing_pen_device.cpp | 32 if (penEventArrays.events.empty()) { in TransformJsonDataToInputData() 37 if (AnalysisPenPadEvent(penEventArrays.events, penEventArray) == RET_ERR) { in TransformJsonDataToInputData()
|
H A D | processing_game_pad_device.cpp | 27 if (originalEvent.events.empty()) { in TransformJsonDataToInputData() 31 std::vector<DeviceEvent> inputData = originalEvent.events; in TransformJsonDataToInputData()
|
/foundation/resourceschedule/ffrt/src/sync/ |
H A D | delayed_worker.cpp | 102 epoll_event timer_event { .events = EPOLLIN | EPOLLET, .data = { .fd = timerfd_ } }; 117 epoll_event monitor_event {.events = EPOLLIN, .data = {.fd = monitorfd_}};
|
/foundation/distributedhardware/distributed_input/services/source/inputinject/src/ |
H A D | distributed_input_inject.cpp | 114 const std::vector<RawEvent> &events) in RegisterDistributedEvent() 122 inputNodeManager_->ReportEvent(devId, events); in RegisterDistributedEvent() 113 RegisterDistributedEvent(const std::string &devId, const std::vector<RawEvent> &events) RegisterDistributedEvent() argument
|
/third_party/libwebsockets/lib/core-net/client/ |
H A D | connect4.c | 278 pfd.events = LWS_POLLIN; in lws_client_connect_4_established() 318 pfd.events = LWS_POLLIN; in lws_client_connect_4_established()
|
/third_party/node/test/fixtures/wpt/streams/writable-streams/ |
H A D | write.any.js | 47 .then(() => assert_array_equals(ws.events, ['write', 1, 'write', 2, 'write', 3, 'write', 4, 'write', 5, 'close'], 236 assert_array_equals(stream.events, ['write', 'a'], 'write() should be passed to sink');
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
H A D | mesa-overlay-control.py | 44 events = self.epoll.poll(timeout) 45 for ev in events:
|
/third_party/libinput/tools/ |
H A D | libinput-analyze-touch-down-state.py | 129 def events(): function 130 for event in device["events"]: 134 for evdev in events():
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | avahi-wrap.c | 60 static void watch_callback(pa_mainloop_api*a, pa_io_event* e, int fd, pa_io_event_flags_t events, void *userdata) { in watch_callback() argument 67 w->current_event = translate_io_flags_back(events); in watch_callback()
|
/third_party/pulseaudio/src/modules/ |
H A D | stdin-util.c | 265 pa_io_event_flags_t events, in io_event_cb() 270 if (events & (PA_IO_EVENT_HANGUP|PA_IO_EVENT_ERROR)) { in io_event_cb() 261 io_event_cb( pa_mainloop_api*a, pa_io_event* e, int fd, pa_io_event_flags_t events, void *userdata) io_event_cb() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
H A D | Renderer.hpp | 175 sw::CountedEvent *events; member 213 CountedEvent *events, int instanceID, int viewID, void *indexBuffer, const VkExtent3D &framebufferExtent,
|
H A D | Renderer.cpp | 184 CountedEvent *events, int instanceID, int viewID, void *indexBuffer, const VkExtent3D &framebufferExtent, in draw() 427 draw->events = events; in draw() 441 if(events) in setup() 443 events->add(); in setup() 449 if(events) in teardown() 451 events->done(); in teardown() 452 events = nullptr; in teardown() 183 draw(const vk::GraphicsPipeline *pipeline, const vk::DynamicState &dynamicState, unsigned int count, int baseVertex, CountedEvent *events, int instanceID, int viewID, void *indexBuffer, const VkExtent3D &framebufferExtent, vk::Pipeline::PushConstantStorage const &pushConstants, bool update) draw() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | eapol_test.py | 58 def wait_event(self, events, timeout=10): 64 for event in events:
|
/foundation/arkui/ace_engine/test/unittest/core/event/ |
H A D | drag_event_test_ng_property_config_coverage.cpp | 524 auto events = touchEventActuator->touchEvents_; in HWTEST_F() local 529 ASSERT_NE(events.size(), 0); in HWTEST_F() 530 for (auto event : events) { in HWTEST_F() 536 for (auto event : events) { in HWTEST_F() 542 for (auto event : events) { in HWTEST_F() 546 for (auto event : events) { in HWTEST_F() 580 auto events = touchEventActuator->touchEvents_; in HWTEST_F() local 585 for (auto event : events) { in HWTEST_F()
|
/third_party/curl/lib/ |
H A D | telnet.c | 1265 pfd[0].events = POLLOUT; in send_telnet_data() 1306 WSANETWORKEVENTS events; in telnet_do() local 1351 /* Tell winsock what events we want to listen to */ in telnet_do() 1378 /* Keep on listening and act on events */ in telnet_do() 1455 events.lNetworkEvents = 0; in telnet_do() 1456 if(WSAEnumNetworkEvents(sockfd, event_handle, &events) == SOCKET_ERROR) { in telnet_do() 1465 if(events.lNetworkEvents & FD_READ) { in telnet_do() 1497 if(events.lNetworkEvents & FD_CLOSE) { in telnet_do() 1521 pfd[0].events = POLLIN; in telnet_do() 1530 pfd[1].events in telnet_do() [all...] |
/third_party/python/Lib/asyncio/ |
H A D | unix_events.py | 20 from . import events namespace 109 handle = events.Handle(callback, args, self, None) 198 with events.get_child_watcher() as watcher: 813 # support selecting read events on the write end of a 1007 assert loop is None or isinstance(loop, events.AbstractEventLoop) 1265 loop = events.get_running_loop() 1390 loop = events.get_running_loop() 1434 class _UnixDefaultEventLoopPolicy(events.BaseDefaultEventLoopPolicy): 1443 with events._lock:
|
H A D | selector_events.py | 23 from . import events namespace 33 # Test if the selector is monitoring 'event' events 40 return bool(key.events & event) 46 See events.EventLoop for API specification. 263 handle = events.Handle(callback, args, self, None) 270 mask, (reader, writer) = key.events, key.data 285 mask, (reader, writer) = key.events, key.data 300 handle = events.Handle(callback, args, self, None) 307 mask, (reader, writer) = key.events, key.data 323 mask, (reader, writer) = key.events, ke [all...] |
/foundation/communication/dsoftbus/sdk/bus_center/manager/src/ |
H A D | client_bus_center_manager.c | 792 if (callback1->events != callback2->events) { in IsSameNodeStateCb() 795 if ((callback1->events & EVENT_NODE_STATE_ONLINE) && in IsSameNodeStateCb() 799 if ((callback1->events & EVENT_NODE_STATE_OFFLINE) && in IsSameNodeStateCb() 803 if ((callback1->events & EVENT_NODE_STATE_INFO_CHANGED) && in IsSameNodeStateCb() 807 if ((callback1->events & EVENT_NODE_STATUS_CHANGED) && in IsSameNodeStateCb() 811 if ((callback1->events & EVENT_NODE_HICHAIN_PROOF_EXCEPTION) && in IsSameNodeStateCb() 1139 (item->cb.events & EVENT_NODE_STATE_ONLINE) != 0) { in LnnOnNodeOnlineStateChanged() 1144 (item->cb.events & EVENT_NODE_STATE_OFFLINE) != 0) { in LnnOnNodeOnlineStateChanged() 1184 (item->cb.events in LnnOnNodeBasicInfoChanged() [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_direct.c | 350 pfds[0].events = POLLIN | POLLERR | POLLHUP; 386 pfds[current+1].events = POLLIN | POLLERR | POLLHUP; 735 pfds->events = pcm->poll_events | POLLERR | POLLNVAL; 754 unsigned short events; local 760 events = pfds[0].revents; 761 if (events & POLLIN) { 765 events |= POLLOUT; 766 events &= ~POLLIN; 776 events |= POLLERR; 789 events [all...] |
/foundation/ability/dmsfwk/interfaces/innerkits/distributed_event/include/ |
H A D | dms_sa_client.h | 41 int32_t GetDSchedEventInfo(const DSchedEventType &type, std::vector<EventNotify> &events);
|
/foundation/CastEngine/castengine_wifi_display/services/network/eventhandler/ |
H A D | event_descriptor_listener.h | 43 const std::string &taskName = DUMMY_EMPTY, uint32_t events = g_defaultEvents);
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/ |
H A D | dom_radio_util.h | 43 const std::string& nodeId, const std::vector<std::string>& events);
|
H A D | dom_button_util.h | 46 const std::vector<std::string>& events);
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_proxy.h | 44 void AddEvent(int32_t pageId, const std::vector<std::string>& events) override {}
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/window_scene/mock/ |
H A D | mock_mmi_event_convertor.cpp | 33 MouseEvent& events, bool isScenceBoardWindow) in ConvertMouseEvent() 32 ConvertMouseEvent(const std::shared_ptr<MMI::PointerEvent>& pointerEvent, MouseEvent& events, bool isScenceBoardWindow) ConvertMouseEvent() argument
|