HomeSort by relevance Sort by last modified time
    Searched defs:uusInfo (Results 1 - 5 of 5) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java 52 public UUSInfo uusInfo;
RIL.java 908 dial(String address, int clirMode, UUSInfo uusInfo, Message result) {
914 if (uusInfo == null) {
918 rr.mParcel.writeInt(uusInfo.getType());
919 rr.mParcel.writeInt(uusInfo.getDcs());
920 rr.mParcel.writeByteArray(uusInfo.getUserData());
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 44 import com.android.internal.telephony.UUSInfo;
172 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException {
222 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
242 dial(String dialString, UUSInfo uusInfo) throws CallStateException {
243 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
    [all...]
  /hardware/ril/libril/
ril.cpp 759 RIL_UUS_Info uusInfo;
787 dial.uusInfo = NULL;
791 memset(&uusInfo, 0, sizeof(RIL_UUS_Info));
794 uusInfo.uusType = (RIL_UUS_Type) t;
797 uusInfo.uusDcs = (RIL_UUS_DCS) t;
806 uusInfo.uusData = NULL;
809 uusInfo.uusData = (char*) p.readInplace(len);
812 uusInfo.uusLength = len;
813 dial.uusInfo = &uusInfo;
    [all...]
  /hardware/ril/include/telephony/
ril.h 303 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
474 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
    [all...]

Completed in 147 milliseconds