HomeSort by relevance Sort by last modified time
    Searched refs:serial (Results 26 - 50 of 1003) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/interfaces/radio/1.2/
IRadio.hal 27 * serial: which corresponds to serial no. of request. Serial numbers must only be memorized for the
29 * serial to different methods), multiple responses (one for each method call) must still be served.
37 * @param serial Serial number of request.
42 oneway startNetworkScan_1_2(int32_t serial, NetworkScanRequest request);
51 * @param serial Serial number of request.
57 oneway setIndicationFilter_1_2(int32_t serial, bitfield<IndicationFilter> indicationFilter)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateSerialNumber.java 55 private SerialNumber serial; field in class:CertificateSerialNumber
60 * @param serial the serial number for the certificate.
63 this.serial = new SerialNumber(num);
69 * @param serial the serial number for the certificate.
72 this.serial = new SerialNumber(num);
78 * @param in the DerInputStream to read the serial number from.
82 serial = new SerialNumber(in);
88 * @param in the InputStream to read the serial number from
    [all...]
  /hardware/interfaces/radio/config/1.0/
IRadioConfig.hal 26 * serial: which corresponds to serial no. of request. Serial numbers must only be memorized for the
28 * serial to different methods), multiple responses (one for each method call) must still be served.
47 * @param serial Serial number of request.
51 oneway getSimSlotsStatus(int32_t serial);
70 * @param serial Serial number of request
81 oneway setSimSlotsMapping(int32_t serial, vec<uint32_t> slotMap)
    [all...]
  /hardware/interfaces/radio/deprecated/1.0/
IOemHook.hal 41 * @param serial Serial number of request.
46 oneway sendRequestRaw(int32_t serial, vec<uint8_t> data);
51 * @param serial Serial number of request.
56 oneway sendRequestStrings(int32_t serial, vec<string> data);
  /tools/tradefederation/core/python-lib/tradefed_py/
base_test.py 31 def setUpDevice(self, serial, stream, options):
35 serial: The serial of the device allocated for the test.
39 self.serial = serial
42 self.android_device = android_device.AndroidTestDevice(serial, stream)
android_device.py 25 def __init__(self, serial=None, stream=None):
27 self.serial = serial
29 self.adb = adb_handler.AdbHandler(serial)
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
IRemoteClient.java 37 * @param serial
40 public void sendAllocateDevice(String serial) throws RemoteException;
45 * @param serial
48 public void sendFreeDevice(String serial) throws RemoteException;
85 * @param serial the device serial to execute on. Must have already been allocated
89 public void sendExecCommand(String serial, String[] commandArgs) throws RemoteException;
94 * @param serial the device serial to execute on. Must have already been allocated
98 public void sendGetLastCommandResult(String serial, ICommandResultHandler handler
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/
DeviceNotAvailableException.java 24 @SuppressWarnings("serial")
41 * @deprecated use {@link #DeviceNotAvailableException(String msg, String serial)} instead
52 * @param serial the serial of the device concerned
54 public DeviceNotAvailableException(String msg, String serial) {
56 mSerial = serial;
66 * {@link #DeviceNotAvailableException(String msg, Throwable cause, String serial)} instead
78 * @param serial the serial of the device concerned by the exception
80 public DeviceNotAvailableException(String msg, Throwable cause, String serial) {
    [all...]
ReconnectingRecovery.java 38 String serial = monitor.getSerialNumber(); local
42 getRunUtil().runTimedCmd(ADB_TIMEOUT, "adb", "disconnect", serial);
47 CLog.i("Trying to reconnect with device " + serial + " / attempt " + attempt);
48 getRunUtil().runTimedCmd(ADB_TIMEOUT, "adb", "connect", serial);
51 String errMsg = "Could not recover device " + serial + " after " + --attempt + " attempts";
56 throw new DeviceUnresponsiveException(errMsg, serial);
61 throw new DeviceUnresponsiveException(errMsg, serial);
65 CLog.v("Successfully reconnected with device " + serial);
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_ims.cpp 25 serial = GetRandomSerialNumber();
27 radio->getClir(serial);
31 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
43 serial = GetRandomSerialNumber();
46 radio->setClir(serial, status);
50 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
61 serial = GetRandomSerialNumber();
67 radio->getFacilityLockForApp(serial, facility, password, serviceClass, appId)
    [all...]
radio_response.cpp 27 parent.notify(info.serial);
34 parent.notify(info.serial);
41 parent.notify(info.serial);
48 parent.notify(info.serial);
55 parent.notify(info.serial);
62 parent.notify(info.serial);
69 parent.notify(info.serial);
76 parent.notify(info.serial);
83 parent.notify(info.serial);
89 parent.notify(info.serial);
    [all...]
radio_hidl_hal_icc.cpp 33 serial = GetRandomSerialNumber();
42 radio->supplyIccPinForApp(serial, hidl_string("test1"),
45 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
56 serial = GetRandomSerialNumber();
65 radio->supplyIccPukForApp(serial, hidl_string("test1"), hidl_string("test2"),
68 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
79 serial = GetRandomSerialNumber();
88 radio->supplyIccPin2ForApp(serial, hidl_string("test1")
    [all...]
radio_hidl_hal_sms.cpp 25 serial = GetRandomSerialNumber();
30 radio->sendSms(serial, msg);
34 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
49 serial = GetRandomSerialNumber();
54 radio->sendSMSExpectMore(serial, msg);
61 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
75 serial = GetRandomSerialNumber();
78 radio->acknowledgeLastIncomingGsmSms(serial, success
    [all...]
radio_hidl_hal_data.cpp 25 serial = GetRandomSerialNumber();
27 radio->getDataRegistrationState(serial);
31 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
42 serial = GetRandomSerialNumber();
70 radio->setupDataCall(serial, radioTechnology, dataProfileInfo, modemCognitive, roamingAllowed,
75 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
90 serial = GetRandomSerialNumber();
94 radio->deactivateDataCall(serial, cid, reasonRadioShutDown)
    [all...]
radio_hidl_hal_cell_broadcast.cpp 25 serial = GetRandomSerialNumber();
70 radio->setGsmBroadcastConfig(serial, gsmBroadcastSmsConfigsInfoList);
74 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
88 serial = GetRandomSerialNumber();
90 radio->getGsmBroadcastConfig(serial);
94 EXPECT_EQ(serial, radioRsp->rspInfo.serial);
108 serial = GetRandomSerialNumber();
118 radio->setCdmaBroadcastConfig(serial, cdmaBroadcastSmsConfigInfoList)
    [all...]
  /hardware/ril/libril/
ril_service.h 30 int responseType, int serial, RIL_Errno e, void *response,
34 int responseType, int serial, RIL_Errno e, void *response,
38 int responseType, int serial, RIL_Errno e, void *response,
42 int responseType, int serial, RIL_Errno e, void *response,
46 int responseType, int serial, RIL_Errno e, void *response,
50 int responseType, int serial, RIL_Errno e, void *response,
54 int responseType, int serial, RIL_Errno e,
58 int responseType, int serial, RIL_Errno e, void *response,
62 int responseType, int serial, RIL_Errno e, void *response, size_t responselen);
65 int serial, RIL_Errno e, void *response, size_t responselen)
    [all...]
ril_service.cpp 132 Return<void> getIccCardStatus(int32_t serial);
134 Return<void> supplyIccPinForApp(int32_t serial, const hidl_string& pin,
137 Return<void> supplyIccPukForApp(int32_t serial, const hidl_string& puk,
140 Return<void> supplyIccPin2ForApp(int32_t serial,
144 Return<void> supplyIccPuk2ForApp(int32_t serial, const hidl_string& puk2,
147 Return<void> changeIccPinForApp(int32_t serial, const hidl_string& oldPin,
150 Return<void> changeIccPin2ForApp(int32_t serial, const hidl_string& oldPin2,
153 Return<void> supplyNetworkDepersonalization(int32_t serial, const hidl_string& netPin);
155 Return<void> getCurrentCalls(int32_t serial);
157 Return<void> dial(int32_t serial, const Dial& dialInfo)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
IssuerSerial.java 19 ASN1Integer serial; field in class:IssuerSerial
54 serial = ASN1Integer.getInstance(seq.getObjectAt(1));
64 BigInteger serial)
66 this(new GeneralNames(new GeneralName(issuer)), new ASN1Integer(serial));
71 BigInteger serial)
73 this(issuer, new ASN1Integer(serial));
78 ASN1Integer serial)
81 this.serial = serial;
91 return serial;
    [all...]
  /hardware/interfaces/radio/config/1.0/vts/functional/
radio_config_hidl_hal_api.cpp 25 const int serial = GetRandomSerialNumber(); local
26 Return<void> res = radioConfig->getSimSlotsStatus(serial);
30 EXPECT_EQ(serial, radioConfigRsp->rspInfo.serial);
42 const int serial = GetRandomSerialNumber(); local
44 Return<void> res = radioConfig->setSimSlotsMapping(serial, mapping);
48 EXPECT_EQ(serial, radioConfigRsp->rspInfo.serial);
  /system/vold/
Ext4Crypt.h 24 bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral);
26 bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token,
30 bool e4crypt_unlock_user_key(userid_t user_id, int serial, const std::string& token,
34 bool e4crypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_refcnt.c 52 /* TODO: maybe move this serial machinery to a stand-alone module and
81 * Return a small integer serial number for the given pointer.
86 unsigned serial; local
101 serial = (unsigned) (uintptr_t) util_hash_table_get(serials_hash, p);
102 if (!serial) {
106 serial = ++serials_last;
107 if (!serial) {
112 util_hash_table_set(serials_hash, p, (void *) (uintptr_t) serial);
117 *pserial = serial;
124 * Free the serial number for the given pointer
187 unsigned serial; local
    [all...]
  /hardware/interfaces/radio/1.2/vts/functional/
radio_hidl_hal_api.cpp 26 serial = GetRandomSerialNumber();
36 Return<void> res = radio_v1_2->startNetworkScan_1_2(serial, request);
40 EXPECT_EQ(serial, radioRsp_v1_2->rspInfo.serial);
54 serial = GetRandomSerialNumber();
59 Return<void> res = radio_v1_2->startNetworkScan_1_2(serial, request);
63 EXPECT_EQ(serial, radioRsp_v1_2->rspInfo.serial);
80 serial = GetRandomSerialNumber();
95 Return<void> res = radio_v1_2->startNetworkScan_1_2(serial, request)
669 int serial = GetRandomSerialNumber(); local
687 int serial = GetRandomSerialNumber(); local
705 int serial = GetRandomSerialNumber(); local
724 int serial = GetRandomSerialNumber(); local
    [all...]
  /hardware/interfaces/radio/1.1/vts/functional/
radio_hidl_hal_api.cpp 28 serial = GetRandomSerialNumber();
29 radio_v1_1->setSimCardPower_1_1(serial, CardPowerState::POWER_DOWN);
32 EXPECT_EQ(serial, radioRsp_v1_1->rspInfo.serial);
49 serial = GetRandomSerialNumber();
50 radio_v1_1->setSimCardPower_1_1(serial, CardPowerState::POWER_UP);
53 EXPECT_EQ(serial, radioRsp_v1_1->rspInfo.serial);
82 serial = GetRandomSerialNumber();
98 radio_v1_1->startNetworkScan(serial, request)
    [all...]
  /toolchain/benchmark/
collect_profile.py 44 parser.add_argument('-s', '--serial',
45 help='Device serial number.')
55 def run_suite(bench, serial, remote, pathDUT):
58 if serial:
59 run_cmd.append('-s=' + serial)
70 def pull_result(bench, serial, remote, pathDUT, path):
77 if serial:
78 pull_cmd.append('-s=' + serial)
125 serial = arguments.serial
    [all...]
  /external/vulkan-validation-layers/build-android/
test_APK.sh 25 echo " -s|--serial <target device serial number> (optional)"
27 echo "i.e. ${0##*/} -p <platform> -f <test filter> -s <serial number>"
51 -s|--serial)
52 serial="$2"
65 if [[ $serial ]]; then
66 serialFlag="-s $serial"
67 if [[ $(adb devices) != *"$serial"* ]]
69 echo Device not found: "${serial}"
92 if [[ $serial ]]; then echo serial = "${serial}"; f
    [all...]

Completed in 408 milliseconds

12 3 4 5 6 7 8 91011>>