Searched defs:what (Results 126 - 136 of 136) sorted by relevance

123456

/frameworks/base/core/java/android/hardware/
H A DCamera.java903 switch(msg.what) {
983 Log.e(TAG, "Unknown message type " + msg.what);
990 int what, int arg1, int arg2, Object obj)
997 Message m = c.mEventHandler.obtainMessage(what, arg1, arg2, obj);
1509 * <p>The direction is relative to the sensor orientation, that is, what
2799 * of what users see, apps should use
3533 * is relative to the sensor orientation, that is, what the sensor sees.
3554 * ({@link #getZoom()}). No matter what the zoom level is, (-1000,-1000)
3602 * direction is relative to the sensor orientation, that is, what the
3622 * ({@link #getZoom()}). No matter what th
989 postEventFromNative(Object camera_ref, int what, int arg1, int arg2, Object obj) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java1074 private int[] readTableFromParcel(Parcel in, String name, String what) { argument
1077 Slog.w(TAG, "Ignoring existing stats; bad " + what + " table size: " + size);
1089 Slog.w(TAG, "Ignoring existing stats; bad " + what + " table entry: "
1289 private boolean readCheckedInt(Parcel in, int val, String what) { argument
1292 mReadError = "bad " + what + ": " + got;
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3019 switch (msg.what) {
3126 switch (msg.what) {
3589 SettingsObserver(Handler handler, int what) { argument
3592 mWhat = what;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateMachine.java636 * Track the worksource/cost of the current settings and track what's been noted
1541 // for now (it is unclear what the chipset should do when
2343 msg.what = WifiP2pService.BLOCK_DISCOVERY;
2465 switch (message.what) {
2488 replyToMessage(message, message.what, FAILURE);
2491 replyToMessage(message, message.what, (List<WifiConfiguration>) null);
2669 switch (message.what) {
2762 switch(message.what) {
2833 switch(message.what) {
2860 replyToMessage(message, message.what, o
4420 replyToMessage(Message msg, int what) argument
4427 replyToMessage(Message msg, int what, int arg1) argument
4435 replyToMessage(Message msg, int what, Object obj) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java131 void registerForRadioStateChanged(Handler h, int what, Object obj); argument
134 void registerForVoiceRadioTechChanged(Handler h, int what, Object obj); argument
136 void registerForImsNetworkStateChanged(Handler h, int what, Object obj); argument
145 void registerForOn(Handler h, int what, Object obj); argument
154 void registerForAvailable(Handler h, int what, Object obj); argument
163 void registerForNotAvailable(Handler h, int what, Object obj); argument
172 void registerForOffOrNotAvailable(Handler h, int what, Object obj); argument
178 void registerForIccStatusChanged(Handler h, int what, Object obj); argument
181 void registerForCallStateChanged(Handler h, int what, Object obj); argument
183 void registerForVoiceNetworkStateChanged(Handler h, int what, Objec argument
185 registerForDataNetworkStateChanged(Handler h, int what, Object obj) argument
189 registerForInCallVoicePrivacyOn(Handler h, int what, Object obj) argument
191 registerForInCallVoicePrivacyOff(Handler h, int what, Object obj) argument
201 setOnNewGsmSms(Handler h, int what, Object obj) argument
211 setOnNewCdmaSms(Handler h, int what, Object obj) argument
219 setOnNewGsmBroadcastSms(Handler h, int what, Object obj) argument
227 setOnSmsOnSim(Handler h, int what, Object obj) argument
235 setOnSmsStatus(Handler h, int what, Object obj) argument
250 setOnNITZTime(Handler h, int what, Object obj) argument
272 setOnUSSD(Handler h, int what, Object obj) argument
283 setOnSignalStrengthUpdate(Handler h, int what, Object obj) argument
294 setOnIccSmsFull(Handler h, int what, Object obj) argument
304 registerForIccRefresh(Handler h, int what, Object obj) argument
307 setOnIccRefresh(Handler h, int what, Object obj) argument
318 setOnCallRing(Handler h, int what, Object obj) argument
330 setOnRestrictedStateChanged(Handler h, int what, Object obj) argument
341 setOnSuppServiceNotification(Handler h, int what, Object obj) argument
352 setOnCatSessionEnd(Handler h, int what, Object obj) argument
363 setOnCatProactiveCmd(Handler h, int what, Object obj) argument
374 setOnCatEvent(Handler h, int what, Object obj) argument
385 setOnCatCallSetUp(Handler h, int what, Object obj) argument
406 registerForDisplayInfo(Handler h, int what, Object obj) argument
417 registerForCallWaitingInfo(Handler h, int what, Object obj) argument
428 registerForSignalInfo(Handler h, int what, Object obj) argument
439 registerForNumberInfo(Handler h, int what, Object obj) argument
450 registerForRedirectedNumberInfo(Handler h, int what, Object obj) argument
461 registerForLineControlInfo(Handler h, int what, Object obj) argument
472 registerFoT53ClirlInfo(Handler h, int what, Object obj) argument
483 registerForT53AudioControlInfo(Handler h, int what, Object obj) argument
489 setEmergencyCallbackMode(Handler h, int what, Object obj) argument
494 registerForCdmaOtaProvision(Handler h,int what, Object obj) argument
505 registerForRingbackTone(Handler h, int what, Object obj) argument
517 registerForResendIncallMute(Handler h, int what, Object obj) argument
528 registerForCdmaSubscriptionChanged(Handler h, int what, Object obj) argument
539 registerForCdmaPrlChanged(Handler h, int what, Object obj) argument
550 registerForExitEmergencyCallbackMode(Handler h, int what, Object obj) argument
564 registerForRilConnected(Handler h, int what, Object obj) argument
1674 registerForCellInfoList(Handler h, int what, Object obj) argument
[all...]
H A DRIL.java303 switch (msg.what) {
636 setOnNITZTime(Handler h, int what, Object obj) { argument
637 super.setOnNITZTime(h, what, obj);
/frameworks/base/core/java/android/app/
H A DActivityThread.java509 String what; field in class:ActivityThread.ContextCleanupInfo
845 // should happen regardless of what pending work we have to do
1188 if (DEBUG_MESSAGES) Slog.v(TAG, ">>> handling: " + codeToString(msg.what));
1189 switch (msg.what) {
1315 cci.context.performFinalCleanup(cci.who, cci.what);
1404 if (DEBUG_MESSAGES) Slog.v(TAG, "<<< done: " + codeToString(msg.what));
2041 private void sendMessage(int what, Object obj) { argument
2042 sendMessage(what, obj, 0, 0, false);
2045 private void sendMessage(int what, Object obj, int arg1) { argument
2046 sendMessage(what, ob
2049 sendMessage(int what, Object obj, int arg1, int arg2) argument
2053 sendMessage(int what, Object obj, int arg1, int arg2, boolean async) argument
2068 scheduleContextCleanup(ContextImpl context, String who, String what) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java3462 public boolean onError(MediaPlayer mp, int what, int extra) {
3503 switch (msg.what) {
3697 onConfigureSafeVolume((msg.what == MSG_CONFIGURE_SAFE_MEDIA_VOLUME_FORCED));
4293 public void setPlaybackInfoForRcc(int rccId, int what, int value) { argument
4294 mMediaFocusControl.setPlaybackInfoForRcc(rccId, what, value);
/frameworks/base/core/java/android/widget/
H A DTextView.java1113 // If set, the input type overrides what was set using the deprecated singleLine flag.
1433 // now compute what (if any) algorithmic styling is needed
2940 * in the TextView beyond what is required for the text itself.
4039 * is useful since it matches what the user can see (obfuscated text or not).
5578 * Keep track of what the error was before doing the input
7475 void spanChange(Spanned buf, Object what, int oldStart, int newStart, int oldEnd, int newEnd) { argument
7484 if (what == Selection.SELECTION_END) {
7496 if (what == Selection.SELECTION_START) {
7510 if ((buf.getSpanFlags(what)&Spanned.SPAN_INTERMEDIATE) == 0) {
7521 if (what instanceo
9205 onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) argument
9211 onSpanAdded(Spannable buf, Object what, int s, int e) argument
9217 onSpanRemoved(Spannable buf, Object what, int s, int e) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java557 * This is the process holding what we currently consider to be
1084 switch (msg.what) {
1680 switch (msg.what) {
2275 msg.what = SHOW_COMPAT_MODE_DIALOG_MSG;
2281 String what, Object obj, ProcessRecord srcApp) {
2292 + what + " " + obj + " from " + srcApp);
4108 msg.what = SHOW_NOT_RESPONDING_MSG;
6696 msg.what = WAIT_FOR_DEBUGGER_MSG;
7582 // adj level. Not sure what to do about this, but at least
9355 msg.what
2280 updateLruProcessInternalLocked(ProcessRecord app, long now, int index, String what, Object obj, ProcessRecord srcApp) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java510 * what will take input. If the device has touch capabilities, however, and the user
4589 * gives it focus no matter what. It should only be called internally by framework
4590 * code that knows what it is doing, namely {@link #requestFocus(int, Rect)}.
4751 * This is what clears the old focus.
6819 * See also {@link #focusSearch(int)}, which is what you call to say that you
6850 * See also {@link #focusSearch(int)}, which is what you call to say that you
6915 * See also {@link #focusSearch(int)}, which is what you call to say that you
6929 * descendants and give it a hint about what direction focus is heading.
6935 * See also {@link #focusSearch(int)}, which is what you call to say that you
6965 * See also {@link #focusSearch(int)}, which is what yo
14982 scheduleDrawable(Drawable who, Runnable what, long when) argument
15001 unscheduleDrawable(Drawable who, Runnable what) argument
[all...]

Completed in 383 milliseconds

123456