Searched refs:up (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/base/core/java/android/net/
H A DINetworkManagementEventObserver.aidl29 * @param up True if the interface has been enabled.
31 void interfaceStatusChanged(String iface, boolean up);
38 * @param up True if the physical link-layer connection signal is valid.
40 void interfaceLinkStateChanged(String iface, boolean up);
H A DEthernetDataTracker.java72 public void interfaceStatusChanged(String iface, boolean up) { argument
73 Log.d(TAG, "Interface status changed: " + iface + (up ? "up" : "down"));
76 public void interfaceLinkStateChanged(String iface, boolean up) { argument
77 if (mIface.equals(iface) && mLinkUp != up) {
78 Log.d(TAG, "Interface " + iface + " link " + (up ? "up" : "down"));
79 mLinkUp = up;
80 mTracker.mNetworkInfo.setIsAvailable(up);
83 if (up) {
[all...]
/frameworks/base/cmds/ip-up-vpn/
H A DAndroid.mk20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
/frameworks/base/services/java/com/android/server/net/
H A DBaseNetworkObserver.java29 public void interfaceStatusChanged(String iface, boolean up) { argument
39 public void interfaceLinkStateChanged(String iface, boolean up) { argument
/frameworks/base/core/jni/android/opengl/
H A Dpoly_clip.cpp62 float *up, *vp, *wp; local
80 up = (float *)u;
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) {
84 *wp = *up+t*(*vp-*up);
149 /* if result ended up in p2 then copy it to p1 */
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridScrollListenerTest.java80 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
83 inst.sendKeySync(up);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListenerTest.java77 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
80 inst.sendKeySync(up);
/frameworks/base/services/java/com/android/server/accessibility/
H A DGestureUtils.java15 public static boolean isTap(MotionEvent down, MotionEvent up, int tapTimeSlop, argument
17 return eventsWithinTimeAndDistanceSlop(down, up, tapTimeSlop, tapDistanceSlop, actionIndex);
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java26 * <li>Provides methods to move the cursor up / down / left / right.</li>
96 * Move up one box, potentially flipping to the previous month.
100 public boolean up() { method in class:DayOfMonthCursor
102 // within current month, just move up
/frameworks/native/services/sensorservice/
H A DFusion.cpp261 vec3_t up(mData[0]);
262 vec3_t east(cross_product(mData[1], up));
264 vec3_t north(cross_product(up, east));
265 R << east << north << up; local
312 const vec3_t up( getRotationMatrix() * Ba );
313 const vec3_t east( cross_product(m, up) );
315 // If the m and up vectors align, the cross product magnitude will
325 vec3_t north( cross_product(up, east) );
/frameworks/base/core/tests/coretests/src/android/util/
H A DDayOfMonthCursorTest.java112 // up, same month
113 assertFalse(mc.up());
118 // up, flips back
119 assertTrue(mc.up());
/frameworks/compile/libbcc/runtime/make/
H A Doptions.mk3 # This list of such variables should be kept up to date with AvailableOptions in
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java114 public void onBluetoothStateChange(boolean up) {
115 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
116 if (!up) {
H A DBluetoothPbap.java115 public void onBluetoothStateChange(boolean up) {
116 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
117 if (!up) {
H A DBluetoothHealth.java103 public void onBluetoothStateChange(boolean up) {
104 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
105 if (!up) {
H A DBluetoothInputDevice.java192 public void onBluetoothStateChange(boolean up) {
193 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
194 if (!up) {
H A DBluetoothHeadset.java227 public void onBluetoothStateChange(boolean up) {
228 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
229 if (!up) {
/frameworks/base/core/java/android/text/method/
H A DScrollingMovementMethod.java39 protected boolean up(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
H A DLinkMovementMethod.java56 protected boolean up(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
61 return super.up(widget, buffer);
/frameworks/base/services/java/com/android/server/
H A DCommonTimeManagementService.java110 public void interfaceStatusChanged(String iface, boolean up) {
113 public void interfaceLinkStateChanged(String iface, boolean up) {
272 Log.i(TAG, "Timeout waiting for interface to come up. " +
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselView.java526 public void setLookAt(float[] eye, float[] at, float[] up) { argument
527 mController.setLookAt(eye, at, up);
H A DCarouselController.java715 public void setLookAt(float[] eye, float[] at, float[] up) { argument
718 mUp = up;
720 mRenderScript.setLookAt(eye, at, up);
/frameworks/wilhelm/src/itf/
H A DI3DLocation.c252 SLVec3D up = thiz->mOrientationVectors.mUp; local
255 *pUp = up;
H A DI3DMacroscopic.c165 SLVec3D up = thiz->mOrientationVectors.mUp; local
168 *pUp = up;
/frameworks/compile/slang/tests/
H A Dtest.py83 # any .rs file. We automatically bundle up all of these extra args and invoke
178 ' -n, --no-cleanup Don\'t clean up after running tests\n'

Completed in 4430 milliseconds

12