/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/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/opt/telephony/src/java/com/android/internal/telephony/ |
IccSmsInterfaceManagerProxy.java | 47 byte[] smsc) { 48 return mIccSmsInterfaceManager.copyMessageToIccEf(callingPackage, status, pdu, smsc);
|
IccSmsInterfaceManager.java | 213 public boolean copyMessageToIccEf(String callingPackage, int status, byte[] pdu, byte[] smsc) { 214 //NOTE smsc not used in RUIM 217 "), smsc=(" + Arrays.toString(smsc) +")"); 228 writeSms(status, smsc, pdu, response); 283 * the current default SMSC 326 * the current default SMSC 368 * the current default SMSC 470 protected abstract void writeSms(int status, byte[] pdu, byte[] smsc, Message response);
|
SMSDispatcher.java | 761 * the current default SMSC [all...] |
CommandsInterface.java | [all...] |
SmsMessageBase.java | 30 /** {@hide} The address of the SMSC. May be null */
|
Phone.java | [all...] |
/external/kernel-headers/original/asm-mips/mips-boards/ |
malta.h | 84 * Malta SMSC FDC37M817 Super I/O Controller register.
|
/frameworks/opt/telephony/src/java/android/telephony/ |
SmsManager.java | 53 * the current default SMSC 120 * the current default SMSC 185 * the current default SMSC 248 * @param smsc the SMSC for this message, or NULL for the default SMSC 257 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu, int status) { 267 status, pdu, smsc);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
RuimSmsInterfaceManager.java | 67 protected void writeSms(int status, byte[] pdu, byte[] smsc, Message response) { 68 //NOTE smsc not used in RUIM
|
CdmaSMSDispatcher.java | 357 // byte smsc[] = (byte[]) map.get("smsc"); // unused for CDMA
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SimSmsInterfaceManager.java | 70 protected void writeSms(int status, byte[] pdu, byte[] smsc, Message response) { 71 mPhone.mCi.writeSmsToSim(status, IccUtils.bytesToHexString(smsc),
|
GsmSMSDispatcher.java | 191 String smsc = IccUtils.bytesToHexString( local 194 mCi.writeSmsToSim(SmsManager.STATUS_ON_ICC_UNREAD, smsc, 294 byte smsc[] = (byte[]) map.get("smsc"); 313 mCi.sendSMS(IccUtils.bytesToHexString(smsc), IccUtils.bytesToHexString(pdu), reply);
|
UsimDataDownloadHandler.java | 140 * @param scAddressLength the length of the SMSC address, or zero if not present
|
/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...] |
/packages/apps/Settings/res/layout/ |
radio_info.xml | 238 <!-- SMSC --> 262 <EditText android:id="@+id/smsc"
|
/hardware/ril/include/telephony/ |
ril.h | 252 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address, 254 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte member in struct:__anon20995 255 (as expected by TS 27.005) or NULL for default SMSC */ [all...] |
/external/grub/netboot/ |
smc9000.h | 15 * information under www.smsc.com in the components division.
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ClassZeroActivity.java | 191 // drift between the handset and the SMSC.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipCommandInterface.java | 232 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...] |
ModelInterpreter.java | 395 pdu.append ("00"); //SMSC address - 0 bytes
|
/packages/apps/Mms/tests/src/com/android/mms/ |
RecyclerTest.java | 148 // drift between the handset and the SMSC.
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
UsimDataDownloadCommands.java | 366 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
|