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

  /frameworks/opt/telephony/src/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/
ISms.aidl 67 boolean copyMessageToIccEf(String callingPkg, 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
  /external/chromium_org/chromeos/network/
network_util.h 31 std::string smsc; // optional; empty if not present in message. member in struct:chromeos::SMS
sms_watcher.cc 57 const char SMSWatcher::kSmscKey[] = "smsc";
65 const char SMSWatcher::kModemManager1SmscKey[] = "Smsc";
153 &sms.smsc);
327 SMSWatcher::kModemManager1SmscKey, &sms.smsc);
cros_network_functions_unittest.cc 352 const std::string smsc = "9876543210"; local
366 new base::StringValue(smsc));
381 sms.smsc = smsc.c_str();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 214 byte smsc[] = (byte[]) map.get("smsc");
254 mCi.sendSMS(IccUtils.bytesToHexString(smsc),
257 mCi.sendImsGsmSms(IccUtils.bytesToHexString(smsc),
UsimDataDownloadHandler.java 69 * UICC response as the acknowledgment to the SMSC.
86 String smsc = IccUtils.bytesToHexString( local
89 mCi.writeSmsToSim(SmsManager.STATUS_ON_ICC_UNREAD, smsc,
178 * @param scAddressLength the length of the SMSC address, or zero if not present
  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 54 * the current default SMSC
121 * the current default SMSC
186 * the current default SMSC
249 * @param smsc the SMSC for this message, or NULL for the default SMSC
258 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu, int status) {
268 status, pdu, smsc);
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 117 private EditText smsc; field in class:RadioInfo
225 smsc.setText("refresh error");
227 smsc.setText((String)ar.result);
234 smsc.setText("update error");
275 smsc = (EditText) findViewById(R.id.smsc);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccSmsInterfaceManager.java 246 public boolean copyMessageToIccEf(String callingPackage, int status, byte[] pdu, byte[] smsc) {
247 //NOTE smsc not used in RUIM
250 "), smsc=(" + Arrays.toString(smsc) +")");
262 mPhone.mCi.writeSmsToSim(status, IccUtils.bytesToHexString(smsc),
322 * the current default SMSC
365 * the current default SMSC
407 * the current default SMSC
CommandsInterface.java     [all...]
RIL.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 247 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
  /hardware/ril/include/telephony/
ril.h 276 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address,
278 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte member in struct:__anon33874
279 (as expected by TS 27.005) or NULL for default SMSC */
    [all...]
  /hardware/ril/reference-ril/
reference-ril.c 1523 const char *smsc; local
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 377 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 988 * smscPDU is smsc address in PDU form GSM BCD format prefixed
989 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
991 * less the SMSC address
1009 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
    [all...]
  /hardware/ril/libril/
ril.cpp 572 args.smsc = strdupReadString(p);
575 appendPrintBuf("%s%d,%s,smsc=%s", printBuf, args.status,
576 (char*)args.pdu, (char*)args.smsc);
    [all...]

Completed in 831 milliseconds