Home
last modified time | relevance | path

Searched refs:val1 (Results 1 – 6 of 6) sorted by relevance

/frameworks/wilhelm/src/android/
Dandroid_GenericPlayer.cpp422 int32_t val1, val2; in onNotify() local
423 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val1)) { in onNotify()
424 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_PREFETCHSTATUSCHANGE, val1); in onNotify()
425 notifClient(kEventPrefetchStatusChange, val1, 0, notifUser); in onNotify()
427 } else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val1)) { in onNotify()
428 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_PREFETCHFILLLEVELUPDATE, val1); in onNotify()
429 notifClient(kEventPrefetchFillLevelUpdate, val1, 0, notifUser); in onNotify()
430 } else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val1)) { in onNotify()
431 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_ENDOFSTREAM, val1); in onNotify()
432 notifClient(kEventEndOfStream, val1, 0, notifUser); in onNotify()
[all …]
/frameworks/opt/colorpicker/src/com/android/colorpicker/
DHsvColorComparator.java34 float val1 = hsv[2]; in compare() local
52 if (val1 < val2) { in compare()
54 } else if (val1 > val2) { in compare()
/frameworks/av/media/libaaudio/examples/utils/
DAAudioExampleUtils.h162 android::status_t sys_futex(void *addr1, int op, int val1, in sys_futex() argument
165 op, val1, timeout, in sys_futex()
/frameworks/base/media/jni/
DJetPlayer.h30 typedef void (*jetevent_callback)(int eventType, int val1, int val2, void *cookie);
/frameworks/av/media/utils/tests/
Dinplace_function_tests.cpp30 BigCallable(size_t* x, size_t val1, size_t val2) : ptr(x), a(val1), b(val2) {} in BigCallable()
/frameworks/base/services/core/java/com/android/server/audio/
DAudioServiceEvents.java243 VolumeEvent(int op, int stream, int val1, int val2, String caller) { in VolumeEvent() argument
246 mVal1 = val1; in VolumeEvent()