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 904 dial(String address, int clirMode, UUSInfo uusInfo, Message result) {
910 if (uusInfo == null) {
914 rr.mParcel.writeInt(uusInfo.getType());
915 rr.mParcel.writeInt(uusInfo.getDcs());
916 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;
170 dial (String dialString, int clirMode, UUSInfo uusInfo) throws CallStateException {
220 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage());
240 dial(String dialString, UUSInfo uusInfo) throws CallStateException {
241 return dial(dialString, CommandsInterface.CLIR_DEFAULT, uusInfo);
    [all...]
  /hardware/ril/libril/
ril.cpp 736 RIL_UUS_Info uusInfo;
764 dial.uusInfo = NULL;
768 memset(&uusInfo, 0, sizeof(RIL_UUS_Info));
771 uusInfo.uusType = (RIL_UUS_Type) t;
774 uusInfo.uusDcs = (RIL_UUS_DCS) t;
783 uusInfo.uusData = NULL;
786 uusInfo.uusData = (char*) p.readInplace(len);
789 uusInfo.uusLength = len;
790 dial.uusInfo = &uusInfo;
    [all...]
  /hardware/ril/include/telephony/
ril.h 231 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
366 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
    [all...]

Completed in 151 milliseconds