Home
last modified time | relevance | path

Searched refs:oc (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java350 for (final Point oc : getOccupied(v)) {
351 mFreeList.add(oc);
352 mCells[oc.y*mColumns + oc.x] = null;
376 for (final Point oc : occupied) {
377 final View squatter = mCells[oc.y*mColumns + oc.x];
410 for (final Point oc : occupied) {
411 mCells[oc.y*mColumns + oc.x] = v;
412 mFreeList.remove(oc);
/frameworks/base/libs/usb/tests/accessorytest/
Daudio.c189 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()
Daccessory.h20 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od);
/frameworks/base/core/java/android/content/res/
DCompatibilityInfo.java524 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/
Dprimitives.cpp897 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/
DContentService.java284 ObserverCall oc = calls.get(i); in notifyChange() local
286 oc.mObserver.onChange(oc.mSelfChange, uri, userHandle); in notifyChange()
288 Log.v(TAG, "Notified " + oc.mObserver + " of " + "update at " + uri); in notifyChange()
293 IBinder binder = oc.mObserver.asBinder(); in notifyChange()
295 = oc.mNode.mObservers; in notifyChange()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNative.java901 public boolean p2pSetChannel(int lc, int oc) { in p2pSetChannel() argument
902 if (DBG) Log.d(mTAG, "p2pSetChannel: lc="+lc+", oc="+oc); in p2pSetChannel()
912 if (oc >= 1 && oc <= 165 ) { in p2pSetChannel()
913 int freq = (oc <= 14 ? 2407 : 5000) + oc * 5; in p2pSetChannel()
916 } else if (oc == 0) { in p2pSetChannel()
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pManager.java1044 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/
DWifiP2pServiceImpl.java1158 int oc = p2pChannels.getInt("oc", 0); in processMessage() local
1160 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
1363 int oc = p2pChannels.getInt("oc", 0); in processMessage() local
1365 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()