/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
|
/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 | 66 * the current default SMSC 142 * the current default SMSC 210 * the current default SMSC 273 * @param smsc the SMSC for this message, or NULL for the default SMSC 282 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu, int status) { 292 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 | 240 public boolean copyMessageToIccEf(String callingPackage, int status, byte[] pdu, byte[] smsc) { 241 //NOTE smsc not used in RUIM 244 "), smsc=(" + Arrays.toString(smsc) +")"); 256 mPhone.mCi.writeSmsToSim(status, IccUtils.bytesToHexString(smsc), 316 * the current default SMSC 359 * the current default SMSC 401 * the current default SMSC
|
CommandsInterface.java | [all...] |
RIL.java | [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipCommandInterface.java | 246 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:__anon34762 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 | 376 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
SimulatedCommands.java | 987 * smscPDU is smsc address in PDU form GSM BCD format prefixed 988 * by a length byte (as expected by TS 27.005) or NULL for default SMSC 990 * less the SMSC address 1008 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...] |