Home
last modified time | relevance | path

Searched refs:lc (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DIccFileHandler.java345 LoadLinearFixedContext lc; in handleMessage() local
356 lc = (LoadLinearFixedContext) ar.userObj; in handleMessage()
358 response = lc.mOnLoaded; in handleMessage()
383 lc = (LoadLinearFixedContext) ar.userObj; in handleMessage()
385 response = lc.mOnLoaded; in handleMessage()
401 lc.mRecordSize = data[RESPONSE_DATA_RECORD_LENGTH] & 0xFF; in handleMessage()
406 lc.mCountRecords = size / lc.mRecordSize; in handleMessage()
408 if (lc.mLoadAll) { in handleMessage()
409 lc.results = new ArrayList<byte[]>(lc.mCountRecords); in handleMessage()
412 mCi.iccIOForApp(COMMAND_READ_RECORD, lc.mEfid, getEFPath(lc.mEfid), in handleMessage()
[all …]
/frameworks/base/core/tests/coretests/src/android/net/
DLinkSocketTest.java38 LinkCapabilities lc; in testLinkCapabilities() local
40 lc = new LinkCapabilities(); in testLinkCapabilities()
41 assertEquals(0, lc.size()); in testLinkCapabilities()
42 assertEquals(true, lc.isEmpty()); in testLinkCapabilities()
/frameworks/base/wifi/java/android/net/wifi/
DWifiNative.java682 public boolean p2pSetChannel(int lc, int oc) { in p2pSetChannel() argument
683 if (DBG) Log.d(mTAG, "p2pSetChannel: lc="+lc+", oc="+oc); in p2pSetChannel()
685 if (lc >=1 && lc <= 11) { in p2pSetChannel()
686 if (!doBooleanCommand("P2P_SET listen_channel " + lc)) { in p2pSetChannel()
689 } else if (lc != 0) { in p2pSetChannel()
/frameworks/base/docs/html/google/play/licensing/
Dadding-licensing.jd26 <li><a href="#impl-lc">Checking the License from an Activity</a>
28 <li><a href="#lc-overview">Overview of license check and response</a></li>
30 <li><a href="#lc-impl">Implement LicenseCheckerCallback as a private inner class</a></li>
33 <li><a href="#lc-lcc">Instantiate LicenseChecker and LicenseCheckerCallback</a></li>
62 <li><a href="#impl-lc">Adding code to check the license</a> in your application's main
308 {@code LicenseChecker}. See <a href="#lc-lcc">Instantiate LicenseChecker and
349 <a href="#lc-lcc">Instantiate LicenseChecker and LicenseCheckerCallback</a>
466 <h2 id="impl-lc">Checking the License from an Activity</h2>
479 <li><a href="#lc-impl">Implement LicenseCheckerCallback</a> as a private inner class</li>
481 <li><a href="#lc-lcc">Instantiate LicenseChecker</a> and LicenseCheckerCallback</li>
[all …]
/frameworks/base/services/java/com/android/server/content/
DContentService.java111 int lc = pidCounts.get(lhs); in dump()
113 if (lc < rc) { in dump()
115 } else if (lc > rc) { in dump()
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pManager.java995 public void setWifiP2pChannels(Channel c, int lc, int oc, ActionListener listener) { in setWifiP2pChannels() argument
998 p2pChannels.putInt("lc", lc); in setWifiP2pChannels()
DWifiP2pService.java1068 int lc = p2pChannels.getInt("lc", 0); in processMessage() local
1071 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
1258 int lc = p2pChannels.getInt("lc", 0); in processMessage() local
1261 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
/frameworks/av/services/audioflinger/
DAudioMixer.cpp116 LocalClock lc; in AudioMixer() local
1462 LocalClock lc; in sInitRoutine() local
1463 sLocalTimeFreq = lc.getLocalFreq(); in sInitRoutine()
DTracks.cpp1012 LocalClock lc; in TimedTrack() local
1013 mLocalTimeFreq = lc.getLocalFreq(); in TimedTrack()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java867 LinkCapabilities lc = getCopyLinkCapabilities(); in processMessage() local
868 if (VDBG) log("REQ_GET_LINK_CAPABILITIES linkCapabilities" + lc); in processMessage()
869 mAc.replyToMessage(msg, DcAsyncChannel.RSP_GET_LINK_CAPABILITIES, lc); in processMessage()