HomeSort by relevance Sort by last modified time
    Searched refs:smsc (Results 1 - 16 of 16) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
IccSmsInterfaceManagerProxy.java 45 byte[] smsc) throws android.os.RemoteException {
46 return mIccSmsInterfaceManager.copyMessageToIccEf(status, pdu, smsc);
ISms.aidl 67 boolean copyMessageToIccEf(int status, in byte[] pdu, in byte[] smsc);
72 * @param smsc the SMSC to send the message through, or NULL for the
73 * default SMSC
98 * @param smsc the SMSC to send the message through, or NULL for the
99 * default SMSC
126 * the current default SMSC
SMSDispatcher.java 670 * the current default SMSC
698 * the current default SMSC
725 * the current default SMSC
752 * @param smsc the SMSC to send the message through, or NULL for the
753 * defatult SMSC
769 protected void sendRawPdu(byte[] smsc, byte[] pdu, PendingIntent sentIntent,
781 map.put("smsc", smsc);
    [all...]
CommandsInterface.java 895 * smscPDU is smsc address in PDU form GSM BCD format prefixed
896 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
898 * less the SMSC address
    [all...]
RIL.java     [all...]
  /frameworks/base/telephony/java/android/telephony/gsm/
SmsManager.java 56 * the current default SMSC
104 * the current default SMSC
140 * the current default SMSC
171 * @param smsc the SMSC for this message, or NULL for the default SMSC
180 public final boolean copyMessageToSim(byte[] smsc, byte[] pdu, int status) {
181 return mSmsMgrProxy.copyMessageToIcc(smsc, pdu, status);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimSmsInterfaceManager.java 147 public boolean copyMessageToIccEf(int status, byte[] pdu, byte[] smsc) {
150 "), smsm=(" + Arrays.toString(smsc) +")");
156 mPhone.mCM.writeSmsToSim(status, IccUtils.bytesToHexString(smsc),
GsmSMSDispatcher.java 221 * the current default SMSC
294 map.put("smsc", pdus.encodedScAddress);
306 byte smsc[] = (byte[]) map.get("smsc");
310 mCm.sendSMS(IccUtils.bytesToHexString(smsc),
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 52 * the current default SMSC
113 * the current default SMSC
177 * the current default SMSC
242 * @param smsc the SMSC for this message, or NULL for the default SMSC
250 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu, int status) {
256 success = iccISms.copyMessageToIccEf(status, pdu, smsc);
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 126 private EditText smsc; field in class:RadioInfo
222 smsc.setText("refresh error");
224 smsc.setText((String)ar.result);
231 smsc.setText("update error");
271 smsc = (EditText) findViewById(R.id.smsc);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
RuimSmsInterfaceManager.java 149 public boolean copyMessageToIccEf(int status, byte[] pdu, byte[] smsc) {
150 //NOTE smsc not used in RUIM
CdmaSMSDispatcher.java 443 byte smsc[] = (byte[]) map.get("smsc");
  /hardware/ril/reference-ril/
reference-ril.c 920 const char *smsc; local
927 smsc = ((const char **)data)[0];
932 // "NULL for default SMSC"
933 if (smsc == NULL) {
934 smsc= "00";
938 asprintf(&cmd2, "%s%s", smsc, pdu);
    [all...]
  /hardware/ril/include/telephony/
ril.h 182 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address,
184 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte member in struct:__anon7702
185 (as expected by TS 27.005) or NULL for default SMSC */
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedCommands.java 915 * smscPDU is smsc address in PDU form GSM BCD format prefixed
916 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
918 * less the SMSC address
932 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
    [all...]
  /hardware/ril/libril/
ril.cpp 538 args.smsc = strdupReadString(p);
541 appendPrintBuf("%s%d,%s,smsc=%s", printBuf, args.status,
542 (char*)args.pdu, (char*)args.smsc);
    [all...]

Completed in 80 milliseconds