Searched refs:when (Results 26 - 50 of 71) sorted by relevance

123

/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp190 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
192 virtual void notifyConfigurationChanged(nsecs_t when);
200 virtual void interceptMotionBeforeQueueing(nsecs_t when, uint32_t& policyFlags);
247 void handleInterceptActions(jint wmActions, nsecs_t when, uint32_t& policyFlags);
530 void NativeInputManager::notifySwitch(nsecs_t when, argument
533 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
534 when, switchValues, switchMask, policyFlags);
540 when, switchValues, switchMask);
544 void NativeInputManager::notifyConfigurationChanged(nsecs_t when) { argument
546 ALOGD("notifyConfigurationChanged - when
778 nsecs_t when = keyEvent->getEventTime(); local
815 interceptMotionBeforeQueueing(nsecs_t when, uint32_t& policyFlags) argument
846 handleInterceptActions(jint wmActions, nsecs_t when, uint32_t& policyFlags) argument
[all...]
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp172 long when; local
176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
181 ZipFileRO::zipTimeToTimespec(when, &t);
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java191 * Automatically sets the when field to {@link System#currentTimeMillis()
203 mNotification.when = System.currentTimeMillis();
212 public Builder setWhen(long when) { argument
213 mNotification.when = when;
218 * Show the {@link Notification#when} field as a stopwatch.
220 * Instead of presenting <code>when</code> as a timestamp, the notification will show an
221 * automatically updating display of the minutes and seconds since <code>when</code>.
223 * Useful when showing an elapsed time (like an ongoing phone call).
226 * @see Notification#when
[all...]
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java35 .setWhen(n.when)
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java43 * When synthesizing key presses for delivery elsewhere or when translating key presses
133 * into latched or locked states when pressed independently.
348 * when the specified meta bits (see {@link MetaKeyKeyListener})
417 * numbers when ALT is pressed such that ALT-Q maps to '1'. So for that keyboard
418 * when {@link #getNumber} is called with {@link KeyEvent#KEYCODE_Q} it returns '1'
419 * so that the user can type numbers without pressing ALT when it makes sense.
644 * then resets the modifier state when the modifier key is released.</li>
655 * This function currently returns {@link #MODIFIER_BEHAVIOR_CHORDED} when the
716 * Thrown by {@link KeyCharacterMap#load} when a key character map could not be loaded.
/frameworks/base/graphics/java/android/graphics/drawable/
H A DClipDrawable.java37 * <p class="note"><strong>Note:</strong> The drawable is clipped completely and not visible when
38 * the level is 0 and fully revealed when the level is 10,000.</p>
120 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
123 callback.scheduleDrawable(this, what, when);
H A DInsetDrawable.java32 * This is used when a View needs a background that is smaller than
140 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
143 callback.scheduleDrawable(this, what, when);
H A DScaleDrawable.java135 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
137 getCallback().scheduleDrawable(this, what, when);
H A DDrawable.java138 * will draw when its draw() method is called.
156 * will draw when its draw() method is called.
164 * by the caller). The bounds specify where this will draw when its draw()
240 * Set to true to have the drawable dither its colors when drawn to a device
247 * Set to true to have the drawable filter its bitmap when scaled or rotated
249 * this call is ignored. This can improve the look when scaled or rotated,
264 * Called when the drawable needs to be redrawn. A view at this point
276 * the parameters <var>(what, who, when)</var> to perform the
281 * @param when The time (in milliseconds) to run. The timebase is
284 public void scheduleDrawable(Drawable who, Runnable what, long when); argument
352 scheduleSelf(Runnable what, long when) argument
[all...]
H A DAnimatedRotateDrawable.java172 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
175 callback.scheduleDrawable(this, what, when);
H A DRotateDrawable.java126 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
129 callback.scheduleDrawable(this, what, when);
H A DDrawableContainer.java137 * Change the global fade duration when a new drawable is entering
146 * Change the global fade duration when a new drawable is leaving
254 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
256 getCallback().scheduleDrawable(this, what, when);
H A DLayerDrawable.java324 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
327 callback.scheduleDrawable(this, what, when);
/frameworks/compile/libbcc/runtime/make/platform/
H A Dclang_darwin.mk1 # These are the functions which clang needs when it is targetting a previous
H A Ddarwin_fat.mk11 # UniveralArchs - A list of architectures to build for, when using universal build
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java277 void sendEvent(int action, int flags, long when) { argument
279 final KeyEvent ev = new KeyEvent(mDownTime, when, action, mCode, repeatCount,
/frameworks/base/tools/aapt/
H A DZipEntry.h106 * Application-defined "mark". Can be useful when synchronizing the
191 void setModWhen(time_t when);
H A DZipEntry.cpp101 * can defer worrying about that to when we're extracting data.
357 void ZipEntry::setModWhen(time_t when) argument
368 even = (time_t)(((unsigned long)(when) + 1) & (~1));
/frameworks/base/services/input/
H A DEventHub.cpp669 event->when = now;
691 event->when = now;
703 event->when = now;
787 event->when = nsecs_t(iev.time.tv_sec) * 1000000000LL
789 ALOGV("event time %lld, now %lld", event->when, now);
795 // This can happen because when the input device is initially opened
806 if (event->when >= now + 10 * 1000000000LL) {
809 if (event->when > time) {
815 device->path.string(), event->when, time, now);
816 event->when
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java113 * Mark when service state is in emergency call only mode
297 // Signal strength polling stops when radio is off
313 // This callback is called when signal strength is polled
317 // Polling will continue when radio turns back on
830 // Add an event log when connection state changes
847 // Add an event log when network type switched
1079 private TimeZone getNitzTimeZone(int offset, boolean dst, long when) { argument
1080 TimeZone guess = findTimeZone(offset, dst, when);
1083 guess = findTimeZone(offset, !dst, when);
1089 private TimeZone findTimeZone(int offset, boolean dst, long when) { argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java234 * @param what what code of message when delivered
302 // Non Volatile. Here when Non-Volatile is ready, we can poll the CDMA
311 // Signal strength polling stops when radio is off.
324 // This callback is called when signal strength is polled
328 // Polling will continue when radio turns back on.
507 // NV is ready when subscription source is NV
962 // Add an event log when connection state changes
1084 private TimeZone getNitzTimeZone(int offset, boolean dst, long when) { argument
1085 TimeZone guess = findTimeZone(offset, dst, when);
1088 guess = findTimeZone(offset, !dst, when);
1094 findTimeZone(int offset, boolean dst, long when) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java45 * The notification that is shown when a USB mass storage host
53 * The notification that is shown when the following media events occur:
301 mUsbStorageNotification.when = 0;
390 mMediaStorageNotification.when = 0;
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java158 not.when = System.currentTimeMillis()-(1000*60*60*24);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s36 ; * equal to predQP especially when the current block and
/frameworks/base/core/java/android/net/
H A DCaptivePortalTracker.java357 notification.when = 0;

Completed in 418 milliseconds

123