/frameworks/base/telephony/java/com/android/internal/telephony/ |
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
|
IccSmsInterfaceManagerProxy.java | 45 byte[] smsc) throws android.os.RemoteException { 46 return mIccSmsInterfaceManager.copyMessageToIccEf(status, pdu, smsc);
|
IccSmsInterfaceManager.java | 56 * the current default SMSC 94 * the current default SMSC 131 * the current default SMSC
|
SMSDispatcher.java | 694 * the current default SMSC 723 * the current default SMSC 761 * the current default SMSC [all...] |
CommandsInterface.java | [all...] |
SmsMessageBase.java | 32 /** {@hide} The address of the SMSC. May be null */
|
Phone.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/android/telephony/ |
SmsManager.java | 52 * the current default SMSC 113 * the current default SMSC 177 * the current default SMSC 239 * @param smsc the SMSC for this message, or NULL for the default SMSC 247 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu, int status) { 253 success = iccISms.copyMessageToIccEf(status, pdu, smsc);
|
/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 | 316 // byte smsc[] = (byte[]) map.get("smsc"); // unused for CDMA
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmSMSDispatcher.java | 189 String smsc = IccUtils.bytesToHexString( local 192 mCm.writeSmsToSim(SmsManager.STATUS_ON_ICC_UNREAD, smsc, 289 byte smsc[] = (byte[]) map.get("smsc"); 293 mCm.sendSMS(IccUtils.bytesToHexString(smsc), IccUtils.bytesToHexString(pdu), reply);
|
SimSmsInterfaceManager.java | 172 public boolean copyMessageToIccEf(int status, byte[] pdu, byte[] smsc) { 175 "), smsm=(" + Arrays.toString(smsc) +")"); 181 mPhone.mCM.writeSmsToSim(status, IccUtils.bytesToHexString(smsc),
|
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 | 124 private EditText smsc; field in class:RadioInfo 219 smsc.setText("refresh error"); 221 smsc.setText((String)ar.result); 228 smsc.setText("update error"); 268 smsc = (EditText) findViewById(R.id.smsc); [all...] |
/packages/apps/Settings/res/layout/ |
radio_info.xml | 223 <!-- SMSC --> 247 <EditText android:id="@+id/smsc"
|
/hardware/ril/include/telephony/ |
ril.h | 248 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address, 250 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte member in struct:__anon16372 251 (as expected by TS 27.005) or NULL for default SMSC */ [all...] |
/device/moto/stingray/ril/ |
libmoto_lte_ril.so | |
/external/grub/netboot/ |
smc9000.h | 15 * information under www.smsc.com in the components division.
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
SipCommandInterface.java | 181 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
|
/frameworks/base/telephony/java/com/android/internal/telephony/test/ |
SimulatedCommands.java | 934 * smscPDU is smsc address in PDU form GSM BCD format prefixed 935 * by a length byte (as expected by TS 27.005) or NULL for default SMSC 937 * less the SMSC address 951 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
ClassZeroActivity.java | 190 // drift between the handset and the SMSC.
|
/hardware/ril/reference-ril/ |
reference-ril.c | 974 const char *smsc; local 981 smsc = ((const char **)data)[0]; 986 // "NULL for default SMSC" 987 if (smsc == NULL) { 988 smsc= "00"; 992 asprintf(&cmd2, "%s%s", smsc, pdu); [all...] |
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
UsimDataDownloadCommands.java | 365 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
|
/packages/apps/Mms/tests/src/com/android/mms/ |
RecyclerTest.java | 148 // drift between the handset and the SMSC.
|