HomeSort by relevance Sort by last modified time
    Searched defs:events (Results 826 - 850 of 1183) sorted by null

<<31323334353637383940>>

  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /system/core/lmkd/
lmkd.c 65 /* default to old in-kernel interface if no memory pressure events */
390 static void ctrl_data_handler(uint32_t events) {
391 if (events & EPOLLHUP) {
395 } else if (events & EPOLLIN) {
400 static void ctrl_connect_handler(uint32_t events __unused) {
417 epev.events = EPOLLIN;
629 static void mp_event(uint32_t events __unused) {
704 epev.events = EPOLLIN;
753 epev.events = EPOLLIN;
768 ALOGE("Kernel does not support memory pressure events or in-kernel low memory killer")
781 struct epoll_event events[maxevents]; local
    [all...]
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/
xml-apis-1.4.01.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityGestureDispatchTest.java 262 // First and last two events are the pointers going down and up
267 // The rest of the events are all moves
270 // All but the first and last events have two pointers
541 assertTrue("Did not receive required events. Got:\n" + mMotionEvents + "\n filtered:\n"
547 List<MotionEvent> events = new ArrayList<>(); local
551 events.add(event);
555 return events;
  /device/generic/goldfish/qemud/
qemud.c 278 * called when events happen on the file descriptor.
281 * the set of monitored events for a given file descriptor.
287 * all events related to a given file descriptor.
305 typedef void (*EventFunc)( void* user, int events );
325 int wanted; /* events we are monitoring */
326 int events; /* events that occured */ member in struct:__anon2999
338 struct epoll_event* events; member in struct:__anon3000
349 l->events = NULL;
357 xfree(l->events);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 25 * 2005-03-27 fl event optimizations; complain about bogus events
1617 PyObject* events; \/* list of events, or NULL if not collecting *\/ member in struct:__anon5703
2715 PyObject* events; \/* event collector *\/ local
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.c 2073 *events[1]; local
    [all...]
  /external/autotest/client/tests/aiostress/
aio-stress.c 233 /* preallocated array of events */
234 struct io_event *events; member in struct:thread_info
236 /* size of the events array */
482 nr = io_getevents(t->io_ctx, min_nr, t->num_global_events, t->events,NULL);
484 nr = io_getevents(t->io_ctx, t->num_global_events, t->events, NULL);
491 event = t->events + i;
966 t->events = malloc(sizeof(struct io_event) * depth * num_files);
967 if (!t->events) {
968 fprintf(stderr, "unable to allocate ram for events\n");
971 memset(t->events, 0, num_files * sizeof(struct io_event)*depth)
    [all...]
  /external/blktrace/btreplay/
btreplay.c 1036 struct io_event *evp, events[naios_out]; local
1041 ndone = io_getevents(tip->ctx, 1, naios_out, events, NULL);
1054 for (i = 0, evp = events; i < ndone; i++, evp++) {
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCommandBuffersTests.cpp 1018 std::vector<VkEventSp> events; local
1341 std::vector <VkEventShared> events; local
3345 std::vector<VkEventSp> events; local
3451 std::vector<VkEventSp> events; local
3898 std::vector<VkEventSp> events; local
    [all...]
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 349 long events; member in class:NextSortKeyPart
358 events(0)
374 events = 0;
382 events++;
395 return events;
416 long events; member in class:NextSortKeyPartUTF8
425 events(0)
441 events = 0;
449 events++;
462 return events;
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 1037 p[0].events |= POLLIN;
1040 p[0].events |= POLLOUT;
1042 p[0].events |= POLLIN;
1046 p[0].events |= POLLIN;
1059 p[1].events |= POLLIN;
2723 struct epoll_event events[MAX_EVENTS]; local
    [all...]
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aio-stress.c 231 /* preallocated array of events */
232 struct io_event *events; member in struct:thread_info
234 /* size of the events array */
492 nr = io_getevents(t->io_ctx, min_nr, t->num_global_events, t->events,
495 nr = io_getevents(t->io_ctx, t->num_global_events, t->events, NULL);
502 event = t->events + i;
982 t->events = malloc(sizeof(struct io_event) * depth * num_files);
983 if (!t->events) {
984 fprintf(stderr, "unable to allocate ram for events\n");
987 memset(t->events, 0, num_files * sizeof(struct io_event) * depth)
    [all...]
  /external/valgrind/cachegrind/
cg_main.c 468 /* Maintain an ordered list of memory events which are outstanding, in
470 helper calls. The BB is scanned top to bottom and memory events
493 events in order to reduce the number of helper function calls made.
495 events with a single helper call. */
567 /* Up to this many unnotified events are allowed. Number is
579 Event events[N_EVENTS]; member in struct:__anon35427
689 /* Generate code for all outstanding memory events, and mark the queue
717 ev = &cgs->events[i];
718 ev2 = ( i < cgs->events_used-1 ? &cgs->events[i+1] : NULL );
719 ev3 = ( i < cgs->events_used-2 ? &cgs->events[i+2] : NULL )
    [all...]
  /external/valgrind/callgrind/
main.c 200 /* Maintain an ordered list of memory events which are outstanding, in
202 helper calls. The BB is scanned top to bottom and memory events
225 events in order to reduce the number of helper function calls made.
227 events with a single helper call. */
299 /* Up to this many unnotified events are allowed. Number is
310 Event events[N_EVENTS]; member in struct:__anon35446
374 /* Generate code for all outstanding memory events, and mark the queue
394 ev = &clgs->events[i];
444 ev = &clgs->events[i];
445 ev2 = ( i < clgs->events_used-1 ? &clgs->events[i+1] : NULL )
    [all...]
  /frameworks/base/core/java/android/app/
Instrumentation.java 373 * (has no more events to process).
958 KeyEvent[] events = keyCharacterMap.getEvents(text.toCharArray()); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 98 int events; field in class:TelephonyRegistry.Record
106 boolean matchPhoneStateListenerEvent(int events) {
107 return (callback != null) && ((events & this.events) != 0);
121 + " events=" + Integer.toHexString(events)
407 r.events = 0;
462 public void listen(String pkgForDebug, IPhoneStateListener callback, int events,
465 events, notifyNow);
470 int events, boolean notifyNow)
1748 int events = r.events; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
MotionEventInjectorTest.java 222 List<GestureStep> events = Arrays.asList( local
226 injectEventsSync(events, mServiceInterface, CLICK_SEQUENCE);
235 mMessageCapturingHandler.sendAllMessages(); // Send all motion events
318 // Send 3 motion events, leaving the extra down in the queue
363 // Send 3 motion events, leaving newEvent in the queue
384 mMessageCapturingHandler.sendAllMessages(); // Send all motion events
387 mMessageCapturingHandler.sendAllMessages(); // Send all motion events
390 List<MotionEvent> events = mCaptor1.getAllValues(); local
391 long downTime = events.get(0).getDownTime();
392 assertThat(events.get(0), allOf(isAtPoint(CONTINUED_LINE_START), IS_ACTION_DOWN
430 List<MotionEvent> events = mCaptor1.getAllValues(); local
463 List<MotionEvent> events = mCaptor1.getAllValues(); local
503 List<MotionEvent> events = mCaptor1.getAllValues(); local
531 List<MotionEvent> events = mCaptor1.getAllValues(); local
550 List<MotionEvent> events = mCaptor1.getAllValues(); local
572 List<MotionEvent> events = mCaptor1.getAllValues(); local
590 List<MotionEvent> events = mCaptor1.getAllValues(); local
609 List<MotionEvent> events = mCaptor1.getAllValues(); local
    [all...]
  /frameworks/native/libs/gui/
Surface.cpp 275 FrameEvents* events = mFrameEventHistory->getFrame(frameNumber); local
276 if (events == nullptr) {
282 // Update our cache of events if the requested events are not available.
283 if (checkConsumerForUpdates(events, mLastFrameNumber,
290 events = mFrameEventHistory->getFrame(frameNumber);
293 if (events == nullptr) {
299 getFrameTimestamp(outRequestedPresentTime, events->requestedPresentTime);
300 getFrameTimestamp(outLatchTime, events->latchTime);
301 getFrameTimestamp(outFirstRefreshStartTime, events->firstRefreshStartTime)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMetrics.java 397 //If past maximum connection events, start removing the oldest
1276 List<WifiMetricsProto.ConnectionEvent> events = new ArrayList<>(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
LinuxPathTest.java 366 WatchEvent.Kind<?>[] events = {ENTRY_CREATE, ENTRY_DELETE}; local
371 WatchKey key = directory.register(watchService, events);
385 // Wait for the events to be recorded by WatchService.
391 // Wait for the events to be recorded by watchService.
401 WatchEvent.Kind<?>[] events = {ENTRY_CREATE, ENTRY_DELETE}; local
405 directory.register(null, events);
427 // When the events are not supported.
430 WatchEvent.Kind<?>[] events = {new NonStandardEvent<>()}; local
432 directory.register(watchService, events);
466 WatchEvent.Kind<?>[] events = {ENTRY_CREATE} local
482 WatchEvent.Kind<?>[] events = {ENTRY_CREATE}; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 116 // events being drawn on each day. The code will expand this if necessary.
254 // Sets the list of events for this week. Takes a sorted list of arrays
271 // Stash the list of events for use when this view is ready, or
277 // clear the cached set of events since we're ready to build it now
309 Log.wtf(TAG, "Events size must be same as days displayed: size="
807 * if the event and its extras won't fit or if there are more events and the
808 * more events line would not fit after drawing this event.
815 * @param moreEvents indicates whether additional events will follow this one
817 * events
1078 ArrayList<Event> events = mEvents.get(dayPosition); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 982 class events(aetools.ComponentItem): class in inherits:aetools.ComponentItem
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
core_validation_types.h 421 std::vector<VkEvent> events; member in struct:GLOBAL_CB_NODE

Completed in 2590 milliseconds

<<31323334353637383940>>