HomeSort by relevance Sort by last modified time
    Searched defs:Event (Results 76 - 100 of 542) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/telephony/java/android/telephony/euicc/
EuiccNotification.java 38 /** Event */
47 public @interface Event {}
62 @Event
68 @Event private final int mEvent;
76 * @param event The event which causes this notification.
80 public EuiccNotification(int seq, String targetAddr, @Event int event, @Nullable byte[] data) {
83 mEvent = event;
97 /** @return The event of this notification. *
    [all...]
  /frameworks/native/libs/gui/include/gui/
DisplayEventReceiver.h 57 struct Event {
82 * DisplayEventReceiver creates and registers an event connection with
115 ssize_t getEvents(Event* events, size_t count);
116 static ssize_t getEvents(gui::BitTube* dataChannel, Event* events, size_t count);
122 static ssize_t sendEvents(gui::BitTube* dataChannel, Event const* events, size_t count);
125 * setVsyncRate() sets the Event::VSync delivery rate. A value of
126 * 1 returns every Event::VSync. A value of 2 returns every other event,
127 * etc... a value of 0 returns no event unless requestNextVsync() has
133 * requestNextVsync() schedules the next Event::VSync. It has no effec
    [all...]
  /frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
Lifecycle.java 29 * {@link Event#ON_CREATE}, {@link Event#ON_START}, {@link Event#ON_RESUME} events in this class
31 * {@link Event#ON_PAUSE}, {@link Event#ON_STOP}, {@link Event#ON_DESTROY} events in this class
33 * For instance, {@link Event#ON_START} will be dispatched after
34 * {@link android.app.Activity#onStart onStart} returns, {@link Event#ON_STOP} will be dispatched
62 * Methods annotated with {@link Event#ON_ANY} can receive the second argument, which must be
63 * of type {@link Event}
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
synchronize.py 25 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
296 # Event
299 class Event(object):
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
synchronize.py 25 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
296 # Event
299 class Event(object):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
synchronize.py 25 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
296 # Event
299 class Event(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
synchronize.py 25 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
296 # Event
299 class Event(object):
  /system/vold/bench/
benchgen.py 34 class Event:
125 events.append(Event(thread, time, call, args, ret))
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
MockVrListenerService.java 31 private static final ArrayBlockingQueue<Event> sEventQueue = new ArrayBlockingQueue<>(4096);
33 public static ArrayBlockingQueue<Event> getPendingEvents() {
50 public static class Event {
55 private Event(VrListenerService i, EventType t, Object o) {
61 public static Event build(VrListenerService instance, EventType type, Object argument1) {
62 return new Event(instance, type, argument1);
65 public static Event build(VrListenerService instance, EventType type) {
66 return new Event(instance, type, null);
75 sEventQueue.put(Event.build(this, EventType.ONBIND, intent));
86 sEventQueue.put(Event.build(this, EventType.ONREBIND, intent))
    [all...]
  /developers/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java 60 mDataItemListAdapter.add(new Event(title, text));
63 private static class DataItemAdapter extends ArrayAdapter<Event> {
86 Event event = getItem(position); local
87 holder.text1.setText(event.title);
88 holder.text2.setText(event.text);
99 private class Event {
104 public Event(String title, String text) {
  /developers/samples/android/wearable/wear/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java 60 mDataItemListAdapter.add(new Event(title, text));
63 private static class DataItemAdapter extends ArrayAdapter<Event> {
86 Event event = getItem(position); local
87 holder.text1.setText(event.title);
88 holder.text2.setText(event.text);
99 private class Event {
104 public Event(String title, String text) {
  /development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DataFragment.java 60 mDataItemListAdapter.add(new Event(title, text));
63 private static class DataItemAdapter extends ArrayAdapter<Event> {
86 Event event = getItem(position); local
87 holder.text1.setText(event.title);
88 holder.text2.setText(event.text);
99 private class Event {
104 public Event(String title, String text) {
  /device/generic/goldfish/camera/qemu-pipeline3/
QemuSensor.h 98 * Interrupt event servicing from the sensor. Only triggers for sensor
102 enum Event {
106 virtual void onQemuSensorEvent(uint32_t frameNumber, Event e,
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.cpp 228 SharedFD SharedFD::Event(int initval, int flags) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
UefiLib.c 63 @param ProtocolGuid Supplies GUID of the protocol upon whose installation the event is fired.
64 @param NotifyTpl Supplies the task priority level of the event notifications.
65 @param NotifyFunction Supplies the function to notify when the event is signaled.
69 @return The notification event that was created.
83 EFI_EVENT Event;
86 // Create the event
94 &Event
99 // Register for protocol notifactions on this event
104 Event,
111 // Kick the event so we will perform an initial pass of
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/I2c/I2cDxe/
I2cDxe.h 122 // Event to set for asynchronous operations, NULL for
125 EFI_EVENT Event;
155 // I2C bus configuration management event
160 // I2C operation completion event
278 When Event is NULL, QueueRequest() operates synchronously and returns
281 When Event is not NULL, QueueRequest() synchronously returns EFI_SUCCESS
311 @param[in] Event Event to signal for asynchronous transactions,
319 queued when Event is not NULL.
321 Event is NULL.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdDxe/
SdDxe.h 87 EFI_EVENT Event;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Handle.h 105 /// Event to notify
106 EFI_EVENT Event;
131 Signal event for every protocol in protocol entry.
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeTcpIoLib/
DxeTcpIoLib.c 28 @param[in] Event The event signaled.
35 IN EFI_EVENT Event,
39 if ((Event == NULL) || (Context == NULL)) {
65 EFI_EVENT Event;
71 Event = NULL;
77 &Event
84 Event,
93 while (EFI_ERROR (gBS->CheckEvent (Event))) {
106 if (Event != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
SockInterface.c 20 Check whether the Event is in the List.
23 @param Event The event to be checked.
25 @retval TRUE The specific Event exists in the List.
26 @retval FALSE The specific Event is not in the List.
32 IN EFI_EVENT Event
45 if (Event == SockToken->Token->Event) {
55 Call SockTokenExistedInList() to check whether the Event is
59 @param Event The event to be checked.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SecurityStubDxe/
Defer3rdPartyImageLoad.c 244 Callback function executed when the EndOfDxe event group is signaled.
246 @param[in] Event Event whose notification function is being invoked.
253 IN EFI_EVENT Event,
261 Event notification for gEfiDxeSmmReadyToLockProtocolGuid event.
266 of the End of DXE Event.
268 @param Event The Event that is being processed, not used.
269 @param Context Event Context, not used.
    [all...]

Completed in 488 milliseconds

1 2 34 5 6 7 8 91011>>