Home
last modified time | relevance | path

Searched refs:event_info (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_parenmatch.py60 self.assertIn('<<parenmatch-check-restore>>', text.event_info())
65 self.assertNotIn('<<parenmatch-check-restore>>', text.event_info())
83 self.assertIn('<<parenmatch-check-restore>>', text.event_info())
88 self.assertNotIn('<<parenmatch-check-restore>>', text.event_info())
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_blacklist.py63 event_info = {
67 device_dicts = {device: event_info for device in devices}
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_parenmatch.py65 self.assertIn('<<parenmatch-check-restore>>', text.event_info())
75 text.event_info())
/external/perfetto/src/traced/probes/ftrace/
DBUILD.gn128 "event_info.cc",
129 "event_info.h",
/external/python/cpython3/Lib/idlelib/
Dmulticall.py394 def event_info(self, virtual=None): member in MultiCallCreator.MultiCall
396 return widget.event_info(self, virtual)
400 widget.event_info(self, virtual)
/external/python/cpython2/Lib/idlelib/
DMultiCall.py381 def event_info(self, virtual=None): member in MultiCallCreator.MultiCall
383 return widget.event_info(self, virtual)
387 widget.event_info(self, virtual)
/external/tensorflow/tensorflow/compiler/xla/python/tpu_driver/
Dgrpc_tpu_driver.cc497 EventInfo event_info; in InitializeRequest() local
501 event_info.all_deps_done = true; in InitializeRequest()
503 event_info.deps.reserve(wait_for.size()); in InitializeRequest()
507 event_info.deps.push_back(grpc_event->id()); in InitializeRequest()
512 events_[operation_id] = event_info; in InitializeRequest()
/external/perfetto/tools/ftrace_proto_gen/
Dftrace_proto_gen.cc233 #include "src/traced/probes/ftrace/event_info.h" in GenerateEventInfo()
/external/u-boot/drivers/usb/dwc3/
Dcore.h945 u32 event_info:9; member
Dgadget.c2399 dwc3_gadget_hibernation_interrupt(dwc, event->event_info); in dwc3_gadget_interrupt()
2402 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); in dwc3_gadget_interrupt()
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
DStandard_Suite.py174 def event_info(self, _object, _attributes={}, **_arguments): member in Standard_Suite_Events
/external/vulkan-validation-layers/tests/
Dvklayertests_others.cpp197 VkEventCreateInfo event_info = {}; in TEST_F() local
198 event_info.sType = VK_STRUCTURE_TYPE_EVENT_CREATE_INFO; in TEST_F()
199 event_info.flags = 1; in TEST_F()
200 vkCreateEvent(device(), &event_info, NULL, &event_handle); in TEST_F()
2336 VkEventCreateInfo event_info; in TEST_F() local
2340 memset(&event_info, 0, sizeof(event_info)); in TEST_F()
2341 event_info.sType = VK_STRUCTURE_TYPE_EVENT_CREATE_INFO; in TEST_F()
2343 err = vkCreateEvent(device(), &event_info, NULL, &event); in TEST_F()
Dvkpositivelayertests.cpp1567 VkEventCreateInfo event_info = {}; in TEST_F() local
1568 event_info.sType = VK_STRUCTURE_TYPE_EVENT_CREATE_INFO; in TEST_F()
1569 event_info.flags = 1; in TEST_F()
1570 vkCreateEvent(device(), &event_info, NULL, &event_handle); in TEST_F()
/external/perfetto/docs/contributing/
Dcommon-tasks.md11 … out/YOUR_BUILD_DIRECTORY`. This will update `src/traced/probes/ftrace/event_info.cc` and `protos/…
/external/perfetto/
DBUILD1157 "src/traced/probes/ftrace/event_info.cc",
1158 "src/traced/probes/ftrace/event_info.h",
DAndroid.bp6909 "src/traced/probes/ftrace/event_info.cc",
/external/python/cpython3/Lib/tkinter/
D__init__.py1851 def event_info(self, virtual=None): member in Misc
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1517 def event_info(self, virtual=None): member in Misc
/external/python/cpython2/Modules/
D_bsddb.c7235 _dbenv_event_notifyCallback(DB_ENV* db_env, u_int32_t event, void *event_info) in _dbenv_event_notifyCallback() argument
7247 args = Py_BuildValue("(Oii)", dbenv, event, *((int *)event_info)); in _dbenv_event_notifyCallback()