Searched refs:oc (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | DessertCaseView.java | 357 for (final Point oc : getOccupied(v)) { 358 mFreeList.add(oc); 359 mCells[oc.y*mColumns + oc.x] = null; 383 for (final Point oc : occupied) { 384 final View squatter = mCells[oc.y*mColumns + oc.x]; 417 for (final Point oc : occupied) { 418 mCells[oc.y*mColumns + oc.x] = v; 419 mFreeList.remove(oc);
|
/frameworks/base/libs/usb/tests/accessorytest/ |
D | audio.c | 189 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od) in init_audio() argument 211 pcm = pcm_open(oc, od, PCM_OUT, &config); in init_audio() 214 oc, od, pcm_get_error(pcm)); in init_audio()
|
D | accessory.h | 20 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od);
|
/frameworks/base/core/java/android/content/res/ |
D | CompatibilityInfo.java | 524 CompatibilityInfo oc = (CompatibilityInfo)o; 525 if (mCompatibilityFlags != oc.mCompatibilityFlags) return false; 526 if (applicationDensity != oc.applicationDensity) return false; 527 if (applicationScale != oc.applicationScale) return false; 528 if (applicationInvertedScale != oc.applicationInvertedScale) return false;
|
/frameworks/native/opengl/libagl/ |
D | primitives.cpp | 897 unsigned int oc = 0; in clip_triangle() local 911 oc++; in clip_triangle() 917 oc++; in clip_triangle() 928 oc++; in clip_triangle() 933 oc++; in clip_triangle() 942 if (oc<3) in clip_triangle() 945 ic = oc; in clip_triangle() 963 unsigned int oc = 0; in clip_triangle() local 976 oc++; in clip_triangle() 982 oc++; in clip_triangle() [all …]
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | ContentService.java | 395 ObserverCall oc = calls.get(i); in notifyChange() local 397 oc.mObserver.onChange(oc.mSelfChange, uri, userHandle); in notifyChange() 398 if (DEBUG) Slog.d(TAG, "Notified " + oc.mObserver + " of " + "update at " in notifyChange() 403 IBinder binder = oc.mObserver.asBinder(); in notifyChange() 405 = oc.mNode.mObservers; in notifyChange()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiNative.java | 1184 public boolean p2pSetChannel(int lc, int oc) { in p2pSetChannel() argument 1185 if (DBG) Log.d(mTAG, "p2pSetChannel: lc="+lc+", oc="+oc); in p2pSetChannel() 1196 if (oc >= 1 && oc <= 165 ) { in p2pSetChannel() 1197 int freq = (oc <= 14 ? 2407 : 5000) + oc * 5; in p2pSetChannel() 1200 } else if (oc == 0) { in p2pSetChannel()
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 1044 public void setWifiP2pChannels(Channel c, int lc, int oc, ActionListener listener) { in setWifiP2pChannels() argument 1048 p2pChannels.putInt("oc", oc); in setWifiP2pChannels()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 1266 int oc = p2pChannels.getInt("oc", 0); in processMessage() local 1268 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage() 1459 int oc = p2pChannels.getInt("oc", 0); in processMessage() local 1461 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
|