HomeSort by relevance Sort by last modified time
    Searched refs:technology (Results 1 - 25 of 54) sorted by null

1 2 3

  /frameworks/base/core/java/android/nfc/
INfcTag.aidl 28 int connect(int nativeHandle, int technology);
42 int setTimeout(int technology, int timeout);
43 int getTimeout(int technology);
46 int getMaxTransceiveLength(int technology);
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 31 public void onHostCardEmulationActivated(int technology);
32 public void onHostCardEmulationData(int technology, byte[] data);
33 public void onHostCardEmulationDeactivated(int technology);
53 boolean connect(int technology);
215 public boolean setTimeout(int technology, int timeout);
217 public int getTimeout(int technology);
221 boolean canMakeReadOnly(int technology);
223 int getMaxTransceiveLength(int technology);
  /external/autotest/client/cros/cellular/
emulator_config.py 22 def _BaseStationFactory(c, technology):
33 if technology == 'Technology:LTE':
50 def StartDefault(config, technology):
54 if 'LTE' in technology:
69 (technology, config.cell['basestations']))
74 bs = _BaseStationFactory(bs_config, technology)
90 bs.SetTechnology(technology)
base_station_8960.py 53 # GSM technology.
79 """Get the radio-access-technology-specific status of the UE.
132 def SetTechnology(self, technology):
138 self.format = ConfigDictionaries.TECHNOLOGY_TO_FORMAT[technology]
141 (technology,
143 self.technology = technology
150 ConfigDictionaries.TECHNOLOGY_TO_CONFIG_STANZA.get(technology, []))
182 cellular.Technology.GPRS,
183 cellular.Technology.EGPRS
    [all...]
environment.py 46 def StartDefault(self, technology):
48 self.config, technology)
base_station_pxt.py 67 """Get the radio-access-technology-specific status of the UE.
116 def SetTechnology(self, technology):
117 # TODO(byronk): The set technology step likely belongs in the
122 self.format = ConfigDictionaries.TECHNOLOGY_TO_FORMAT[technology]
125 technology,
127 self.technology = technology
167 return [cellular.Technology.LTE]
281 cellular.Technology.GPRS: 'GSM/GPRS',
282 cellular.Technology.EGPRS: 'GSM/GPRS'
    [all...]
labconfig.py 63 '--technology', dest='technology', default='all',
135 technologies_list = self.options.technology.split(',')
141 enums = [getattr(cellular.Technology, t, None)
146 'Could not understand a technology in %s' % technologies_list)
  /external/autotest/client/site_tests/cellular_Signal/
cellular_Signal.py 28 def __init__(self, technology):
29 self.technology = technology
69 # choose a technology other than the one we plan to start with
70 technology = technologies[-1]
75 env.StartDefault(technology)
77 logging.info('Preparing for %s' % technology)
78 cell_tools.PrepareModemForTechnology('', technology)
96 tname = str(tech).replace('Technology:', '')
135 (wt.technology, cell_modem.GetAccessTechnology())
    [all...]
  /external/autotest/client/site_tests/cellular_Smoke/
cellular_Smoke.py 24 def run_once(self, config, technology):
41 env.StartDefault(technology)
43 cell_tools.PrepareModemForTechnology('', technology)
  /external/autotest/client/site_tests/cellular_Throughput/
cellular_Throughput.py 19 def run_once(self, config, technology):
23 env.StartDefault(technology)
25 cell_tools.PrepareModemForTechnology('', technology)
  /packages/apps/Nfc/nci/jni/
RoutingManager.h 51 void handleData (uint8_t technology, const uint8_t* data, uint32_t dataLen, tNFA_STATUS status);
52 void notifyActivated (uint8_t technology);
53 void notifyDeactivated (uint8_t technology);
RoutingManager.cpp 127 ALOGV("%s: Technology Routing (NfcASe:0x%02x, NfcFSe:0x%02x)", fn, mActiveSe, mActiveSeNfcF);
170 // Set technology routes to UICC if it's there
173 ALOGE("Failed to configure UICC technology routing.");
276 // Default routing for Nfc-A/Nfc-F technology if we don't have a SE
295 // Default routing for Nfc-A technology if we don't have a SE
311 // Default routing for Nfc-F technology if we don't have a SE
419 void RoutingManager::notifyActivated (uint8_t technology)
429 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuActivated, (int)technology);
437 void RoutingManager::notifyDeactivated (uint8_t technology)
448 e->CallVoidMethod (mNativeData->manager, android::gCachedNfcManagerNotifyHostEmuDeactivated, (int)technology);
    [all...]
  /frameworks/base/core/proto/android/service/
battery.proto 75 string technology = 13;
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcManager.java 292 public int getMaxTransceiveLength(int technology) {
293 switch (technology) {
396 private void notifyHostEmuActivated(int technology) {
397 mListener.onHostCardEmulationActivated(technology);
400 private void notifyHostEmuData(int technology, byte[] data) {
401 mListener.onHostCardEmulationData(technology, data);
404 private void notifyHostEmuDeactivated(int technology) {
405 mListener.onHostCardEmulationDeactivated(technology);
NativeNfcTag.java 58 // mConnectedTechIndex stores to which technology
61 // connected to a technology - technology changes
150 public synchronized int connectWithStatus(int technology) {
156 if (mTechList[i] == technology) {
162 // 2) We are connected to a technology which has
180 // 1) We are connected to a technology which has the same
184 // 2) We are connecting to the ndef technology - always
186 if ((technology == TagTechnology.NDEF) ||
187 (technology == TagTechnology.NDEF_FORMATABLE))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
iwmmxt-wldsttbh.d 2 #name: Intel(r) Wireless MMX(tm) technology instructions version 1
  /external/autotest/client/cros/cellular/wardmodem/state_machines/
network_operator_machine.py 10 and also the technology used to associate with the network.
97 technology = self._extract_technology(self._default_operator_index)
99 'access_technology': technology})
129 Return the currently selected technology encoded correctly for the
157 return operator['TECHNOLOGY']
network_registration_machine.py 91 technology = self._state['access_technology']
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
CardEmulationManager.java 109 public void onHostCardEmulationActivated(int technology) {
113 if (technology == NFC_HCE_APDU) {
116 } else if (technology == NFC_HCE_NFCF) {
123 public void onHostCardEmulationData(int technology, byte[] data) {
127 if (technology == NFC_HCE_APDU) {
129 } else if (technology == NFC_HCE_NFCF) {
134 public void onHostCardEmulationDeactivated(int technology) {
135 if (technology == NFC_HCE_APDU) {
138 } else if (technology == NFC_HCE_NFCF) {
  /external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
network_3GRecoverFromGobiDesync.py 264 """Test that the Enable and Disable technology functions work."""
284 """Test that the Enable and Disable technology functions work.
286 The expectation is that by using enable technology shill
291 technology, we wait until the shill device state changes,
302 # Enable technology, ensure that device and modem are enabled.
310 # Disable technology, ensure that device and modem are disabled.
342 logging.info('Testing that Enable and Disable technology still work')
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_msg.h 99 LocPosTechMask technology);
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_msg.h 99 LocPosTechMask technology);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_msg.h 99 LocPosTechMask technology);
  /hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
loc_eng_msg.h 99 LocPosTechMask technology);
  /hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
loc_eng_msg.h 99 LocPosTechMask technology);

Completed in 1629 milliseconds

1 2 3